aboutsummaryrefslogtreecommitdiff
path: root/migrations/2021-05-13-001536_links/up.sql
blob: 9d6ef7d7677ffe155f53d137c9365ef3de7fb7ed (plain) (blame)
1
2
3
4
5
6
7
CREATE TABLE links (
  long TEXT NOT NULL,
  short TEXT NOT NULL PRIMARY KEY,
  disabled BOOLEAN NOT NULL DEFAULT FALSE,
  ip TEXT NOT NULL,
  uses INTEGER NOT NULL DEFAULT 0
)