summaryrefslogtreecommitdiffstats
path: root/migrations/20221003064044_add-likes.sql
blob: c94d4886bd81adb2e75dee9a21c4c0dc96ef7b13 (plain)
1
2
3
4
5
6
CREATE TABLE likes (
    id SERIAL PRIMARY KEY,
    user_id INTEGER REFERENCES users(id) ON DELETE SET NULL,
    model_id INTEGER REFERENCES models(id) ON DELETE SET NULL,
    created TIMESTAMP NOT NULL
);