James Tombleson
84b4137bdd
* Updated migrations to add new columns to subscriptions * repos updated with new columns * dto updated with new columns * subscription model was updated * DiscordNotificationJob.cs was updated to reflect subscription options * updated seed for codeproject subscriptions
12 lines
217 B
SQL
12 lines
217 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE icons
|
|
ADD COLUMN SourceId uuid;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE icons
|
|
Drop COLUMN SourceId;
|
|
-- +goose StatementEnd
|