aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/20170618185500_scrobble_import_count.sql
blob: c79bbefd26c35b265cb474eca719830c5bf08dcc (plain)
1
2
3
4
5
6
7
8
9
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;