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
413 B

4 years ago
  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE goal (
  4. goal_id CHAR(16) PRIMARY KEY,
  5. user_id CHAR(36) NOT NULL,
  6. group_id CHAR(16) NOT NULL,
  7. start_time TIMESTAMP NOT NULL,
  8. end_time TIMESTAMP NOT NULL,
  9. amount INTEGER NOT NULL,
  10. name TEXT NOT NULL,
  11. description TEXT NOT NULL
  12. );
  13. -- +goose StatementEnd
  14. -- +goose Down
  15. -- +goose StatementBegin
  16. DROP TABLE goal;
  17. -- +goose StatementEnd