Plume/migrations/sqlite/2018-04-23-142746_create_po.../up.sql

7 lines
242 B
MySQL
Raw Permalink Normal View History

2018-04-23 16:37:49 +02:00
-- Your SQL goes here
CREATE TABLE post_authors (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
2018-04-23 16:37:49 +02:00
post_id INTEGER REFERENCES posts(id) ON DELETE CASCADE NOT NULL,
author_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL
)