1
0
Fork 0
mirror of https://git.joinplu.me/Plume/Plume.git synced 2025-01-04 10:48:43 +00:00
Plume/migrations/2018-05-01-124607_create_follow/up.sql
2018-05-01 14:06:31 +01:00

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
)