Skip to content

Commit

Permalink
Added db schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno.chavez committed May 4, 2019
1 parent 179aae0 commit 390ed10
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions database/schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
CREATE TABLE quotes (
id_quote INTEGER PRIMARY KEY,
content TEXT NOT NULL,
score INTEGER NOT NULL,
uuid TEXT NOT NULL UNIQUE
);
CREATE INDEX uuid on quotes (uuid);
CREATE TABLE indexes (
id_index INTEGER PRIMARY KEY,
word TEXT NOT NULL UNIQUE
);
CREATE TABLE indexes_quotes (
id_index INTEGER,
id_quote INTEGER
);
CREATE INDEX index_quote on indexes_quotes (id_index, id_quote);

0 comments on commit 390ed10

Please sign in to comment.