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.

16 lines
395 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE project_requirement (
  4. `id` INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
  5. `scope_id` INT NOT NULL,
  6. `project_id` INT NOT NULL,
  7. `name` VARCHAR(255) NOT NULL,
  8. `status` INT NOT NULL,
  9. `description` TEXT NOT NULL
  10. )
  11. -- +goose StatementEnd
  12. -- +goose Down
  13. -- +goose StatementBegin
  14. DROP TABLE IF EXISTS project_requirement;
  15. -- +goose StatementEnd