This repository has been archived on 2024-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
icytv/migrations/002_link.sql

11 lines
141 B
SQL

-- Up
CREATE TABLE link (
id INTEGER PRIMARY KEY,
url TEXT NOT NULL,
name TEXT NOT NULL,
uuid TEXT NOT NULL
);
-- Down
DROP TABLE link;