5 lines
87 B
SQL
5 lines
87 B
SQL
CREATE TABLE events (
|
|
id SERIAL PRIMARY KEY,
|
|
time TIMESTAMP UNIQUE NOT NULL
|
|
);
|