Pslink/migrations/2021-02-09-175834_add_statistics/up.sql
2021-02-09 21:30:11 +01:00

13 lines
203 B
SQL

-- Your SQL goes here
CREATE TABLE clicks
(
id INTEGER PRIMARY KEY NOT NULL,
link INT NOT NULL,
created_at TIMESTAMP NOT NULL,
FOREIGN KEY
(link)
REFERENCES links
(id)
);