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

7 lines
220 B
MySQL
Raw Normal View History

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