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.

13 lines
290 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE scope (
  4. `id` INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
  5. `name` VARCHAR(255) NOT NULL,
  6. `abbreviation` CHAR(8) NOT NULL
  7. )
  8. -- +goose StatementEnd
  9. -- +goose Down
  10. -- +goose StatementBegin
  11. DROP TABLE IF EXISTS scope;
  12. -- +goose StatementEnd