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.

18 lines
407 B

4 years ago
  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE project (
  4. project_id CHAR(16) PRIMARY KEY,
  5. user_id CHAR(36) NOT NULL,
  6. name TEXT NOT NULL,
  7. description TEXT NOT NULL,
  8. icon TEXT NOT NULL,
  9. active BOOLEAN NOT NULL,
  10. created_time TIMESTAMP NOT NULL,
  11. end_time TIMESTAMP
  12. );
  13. -- +goose StatementEnd
  14. -- +goose Down
  15. -- +goose StatementBegin
  16. DROP TABLE project;
  17. -- +goose StatementEnd