8 lines
224 B
SQL
Executable File
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
|
|
)
|