You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
492 B
20 lines
492 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE story (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
author TEXT NOT NULL,
|
|
name TEXT NOT NULL,
|
|
category TEXT NOT NULL,
|
|
open BOOLEAN NOT NULL,
|
|
listed BOOLEAN NOT NULL,
|
|
sort_by_fictional_date BOOLEAN NOT NULL,
|
|
created_date TIMESTAMP NOT NULL,
|
|
fictional_date TIMESTAMP NOT NULL,
|
|
updated_date TIMESTAMP NOT NULL
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE story;
|
|
-- +goose StatementEnd
|