zkt25/sk1/db.sql

5 lines
116 B
SQL

CREATE TABLE IF NOT EXISTS visitors (
id SERIAL PRIMARY KEY,
created_at TIMESTAMP NOT NULL DEFAULT NOW()
);