mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-13 23:41:00 +00:00
7 lines
261 B
SQL
7 lines
261 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE blog_authors (
|
|
id SERIAL PRIMARY KEY,
|
|
blog_id INTEGER REFERENCES blogs(id) ON DELETE CASCADE NOT NULL,
|
|
author_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL,
|
|
is_owner BOOLEAN NOT NULL DEFAULT 'f'
|
|
)
|