Adds feed type to Feed struct and table schema

This commit is contained in:
Dennis Schoepf 2024-05-31 19:55:39 +02:00
parent efff6edf0e
commit 4f86ab9cb0
2 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,7 @@
-- +migrate Up
ALTER TABLE feed
ADD COLUMN type text;
-- +migrate Down
ALTER TABLE feed
DROP COLUMN type;