1
0
Fork 0
ncpn/migrations/20240128201312_create-link.up.sql
2024-01-30 19:27:14 +01:00

7 lines
163 B
SQL

CREATE TABLE IF NOT EXISTS link (
id UUID PRIMARY KEY,
slug TEXT UNIQUE NOT NULL,
destination TEXT NOT NULL,
visit_count INT NOT NULL DEFAULT 0
);