Newsbot.Collector/Newsbot.Collector.Database/Migrations/20230326223545_icon_sourceid.sql
James Tombleson 84b4137bdd
Features/codeproject/subscription options (#28)
* 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
2023-04-13 22:13:06 -07:00

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