about summary refs log tree commit diff
path: root/server/migrations/2021-01-12-171443_create_links/up.sql
blob: 17e3f92695c6a80d84a4213339f5c2c2c2e5ef2f (plain)
1
2
3
4
CREATE TABLE links (
    hash CHAR(3) PRIMARY KEY,
    url VARCHAR(2048) NOT NULL
);