about summary refs log tree commit diff
path: root/fun/tvldb/src/schema.rs
diff options
context:
space:
mode:
Diffstat (limited to 'fun/tvldb/src/schema.rs')
-rw-r--r--fun/tvldb/src/schema.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/fun/tvldb/src/schema.rs b/fun/tvldb/src/schema.rs
deleted file mode 100644
index ef4044531ee7..000000000000
--- a/fun/tvldb/src/schema.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-table! {
-    entries (id) {
-        id -> Int4,
-        keyword_id -> Int4,
-        idx -> Int4,
-        text -> Varchar,
-        creation_ts -> Timestamp,
-        created_by -> Varchar,
-    }
-}
-
-table! {
-    keywords (id) {
-        id -> Int4,
-        name -> Varchar,
-        chan -> Varchar,
-    }
-}