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

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. ALTER TABLE log
  4. ADD COLUMN item_amount INT NOT NULL DEFAULT 1,
  5. ADD COLUMN secondary_item_id CHAR(16) DEFAULT NULL,
  6. ADD COLUMN secondary_item_amount INT NOT NULL DEFAULT 0;
  7. -- +goose StatementEnd
  8. -- +goose Down
  9. -- +goose StatementBegin
  10. ALTER TABLE log
  11. DROP COLUMN item_amount,
  12. DROP COLUMN secondary_item_id,
  13. DROP COLUMN secondary_item_amount;
  14. -- +goose StatementEnd