James Tombleson
aa53b1eeeb
* new seed and corrected some issues talking to the db * adding some prep work for adding youtube back again * small updates for rss and getting results from discord job * new command to reload db * added discord alerts job to hangfire
21 lines
431 B
SQL
21 lines
431 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
INSERT INTO sources VALUES (
|
|
uuid_generate_v4(),
|
|
'rss',
|
|
'Let''s Mosley',
|
|
'feed',
|
|
'rss',
|
|
'podcast',
|
|
TRUE,
|
|
'https://anchor.fm/s/6c7aa4c4/podcast/rss',
|
|
'rss,let''s mosley,fitnes,coach',
|
|
FALSE);
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DELETE FROM sources Where type = 'rss' And Name = 'Let''s Mosley'
|
|
-- +goose StatementEnd
|