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.

17 lines
379 B

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