Plume/migrations/2018-05-01-124607_create_follow/up.sql
2018-05-01 14:06:31 +01:00

7 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
)