Pslink/migrations/2021-02-09-175834_add_statistics/up.sql

13 lines
203 B
MySQL
Raw Normal View History

2021-02-09 21:30:11 +01:00
-- 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)
);