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
13 lines
220 B
SQL
13 lines
220 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE sources
|
|
ADD COLUMN IconUri uuid;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE sources
|
|
DROP COLUMN IconUri;
|
|
|
|
-- +goose StatementEnd
|