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.

11 lines
264 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. ALTER TABLE project
  4. ADD COLUMN project_group_id CHAR(16) DEFAULT NULL;
  5. -- +goose StatementEnd
  6. -- +goose Down
  7. -- +goose StatementBegin
  8. ALTER TABLE project
  9. DROP COLUMN IF EXISTS project_group_id;
  10. -- +goose StatementEnd