diff options
Diffstat (limited to 'migrations')
| -rw-r--r-- | migrations/20170618185500_scrobble_import_count.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/migrations/20170618185500_scrobble_import_count.sql b/migrations/20170618185500_scrobble_import_count.sql new file mode 100644 index 0000000..c79bbef --- /dev/null +++ b/migrations/20170618185500_scrobble_import_count.sql @@ -0,0 +1,10 @@ + +-- +goose Up +-- SQL in section 'Up' is executed when this migration is applied + +ALTER TABLE scrobble_import ADD COLUMN count int; + +-- +goose Down +-- SQL section 'Down' is executed when this migration is rolled back + +ALTER TABLE scrobble_import DROP COLUMN count; |
