GraphQL API and utilities for the rpdata project
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
503 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE story_comment (
  4. id TEXT NOT NULL PRIMARY KEY,
  5. chapter_id TEXT NOT NULL,
  6. character_id TEXT NOT NULL,
  7. subject TEXT NOT NULL,
  8. author TEXT NOT NULL,
  9. character_name TEXT NOT NULL,
  10. source TEXT NOT NULL,
  11. created_date TIMESTAMP NOT NULL,
  12. fictional_date TIMESTAMP NOT NULL,
  13. edited_date TIMESTAMP NOT NULL
  14. );
  15. -- +goose StatementEnd
  16. -- +goose Down
  17. -- +goose StatementBegin
  18. DROP TABLE story_comment;
  19. -- +goose StatementEnd