mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-13 23:41:00 +00:00
6 lines
220 B
SQL
6 lines
220 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE follows (
|
|
id SERIAL PRIMARY KEY,
|
|
follower_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL,
|
|
following_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL
|
|
)
|