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

9 lines
327 B
MySQL
Raw Normal View History

2018-05-10 15:54:35 +00:00
-- Your SQL goes here
CREATE TABLE likes (
id INTEGER 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,
ap_url VARCHAR NOT NULL default '',
creation_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
2018-05-10 15:54:35 +00:00
)