This commit is contained in:
Kyle Isom 2022-03-12 21:51:49 -08:00
parent 23efa07dc5
commit 96479f1389
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@ CREATE TABLE urls (
url TEXT NOT NULL,
nurl TEXT NOT NULL, -- normalized url
short TEXT NOT NULL UNIQUE,
created_at TIMESTAMPTZ NOT NULL DEFAULT
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);