use postgresql
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
|
||||
DROP TABLE comments
|
||||
15
migrations/sqlite3/2022-03-15-104943_create_comments/up.sql
Normal file
15
migrations/sqlite3/2022-03-15-104943_create_comments/up.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
-- Your SQL goes here
|
||||
|
||||
CREATE TABLE comments (
|
||||
id INTEGER NOT NULL PRIMARY KEY,
|
||||
author_hash VARCHAR NOT NULL,
|
||||
author_title VARCHAR(10) NOT NULL DEFAULT '',
|
||||
is_tmp BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
content TEXT NOT NULL,
|
||||
create_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
is_deleted BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
post_id INTEGER NOT NULL,
|
||||
FOREIGN KEY(post_id) REFERENCES posts(id)
|
||||
);
|
||||
CREATE INDEX comments_postId_idx ON comments (`post_id`);
|
||||
|
||||
Reference in New Issue
Block a user