7 lines
186 B
SQL
7 lines
186 B
SQL
CREATE TABLE IF NOT EXISTS users (
|
|
id uuid PRIMARY KEY,
|
|
email text NOT NULL UNIQUE,
|
|
joined_at timestamp DEFAULT CURRENT_TIMESTAMP,
|
|
foo text,
|
|
bar text
|
|
);
|