Plume/migrations/postgres/2018-05-01-124607_create_follow/up.sql

7 lines
220 B
MySQL
Raw Normal View History

2018-05-01 13:06:31 +00:00
-- 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
)