Skip to content

Read from RSS feeds and send an email for every new item

License

Notifications You must be signed in to change notification settings

ArloL/rss-to-mail

Repository files navigation

rss-to-mail

Read from RSS feeds and send an email for every new item.

Migrating the database

ALTER TABLE CHANNEL ALTER COLUMN ID RESTART WITH (SELECT MAX(ID) + 1 FROM CHANNEL)

ALTER TABLE FEED_ITEM  ALTER COLUMN ID RESTART WITH (SELECT MAX(ID) + 1 FROM FEED_ITEM)

Resources