Plume/migrations/sqlite/2018-05-10-154336_create_likes/up.sql

9 lines
336 B
MySQL
Raw Permalink Normal View History

2018-05-10 17:54:35 +02:00
-- Your SQL goes here
CREATE TABLE likes (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
2018-05-10 17:54:35 +02:00
user_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL,
post_id INTEGER REFERENCES posts(id) ON DELETE CASCADE NOT NULL,
creation_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
ap_url VARCHAR NOT NULL default ''
2018-05-10 17:54:35 +02:00
)