rss-reader/migrations/2022-11-26-102327_feed_item/up.sql

8 lines
224 B
SQL
Executable File

-- Your SQL goes here
CREATE TABLE feed_item (
id SERIAL PRIMARY KEY,
feed_id INTEGER NOT NULL REFERENCES feed(id) DEFERRABLE INITIALLY DEFERRED,
content TEXT NOT NULL,
read BOOLEAN NOT NULL DEFAULT FALSE
)