mirror of
https://github.com/Alexander-D-Karpov/webring.git
synced 2026-03-16 22:07:41 +03:00
7 lines
273 B
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
|
|
); |