mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-19 02:01:04 +00:00
88456faf84
this one's achieved by adding "NOT NULL" at the *correct* position in SQLite's create tables.
7 lines
285 B
SQL
7 lines
285 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE blog_authors (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
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'
|
|
)
|