mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
88456faf84
this one's achieved by adding "NOT NULL" at the *correct* position in SQLite's create tables.
7 lines
281 B
SQL
7 lines
281 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE follows (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
follower_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL,
|
|
following_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL,
|
|
ap_url TEXT NOT NULL default ''
|
|
)
|