webring/migrations/001_create_sites_table.up.sql

7 lines
273 B
SQL

CREATE TABLE sites (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
url TEXT NOT NULL,
is_up BOOLEAN NOT NULL DEFAULT true,
last_check FLOAT NOT NULL DEFAULT 0
);