Loggest thy stuff
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.

15 lines
361 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE project_requirement_stat (
  4. `project_requirement_id` INT NOT NULL,
  5. `stat_id` INT NOT NULL,
  6. `required` INT NOT NULL,
  7. PRIMARY KEY (`project_requirement_id`, `stat_id`)
  8. )
  9. -- +goose StatementEnd
  10. -- +goose Down
  11. -- +goose StatementBegin
  12. DROP TABLE IF EXISTS project_requirement_stat;
  13. -- +goose StatementEnd