1
0
Fork 0
ncpn/migrations/20240128201312_create-link.up.sql

7 lines
163 B
MySQL
Raw Normal View History

2024-01-30 19:27:14 +01:00
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
);