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

9 lines
336 B
MySQL
Raw Normal View History

2018-05-10 15:54:35 +00:00
-- Your SQL goes here
CREATE TABLE likes (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
2018-05-10 15:54:35 +00: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 15:54:35 +00:00
)