mirror of
https://github.com/Noratrieb/karlauth.git
synced 2026-01-14 14:25:02 +01:00
10 lines
No EOL
232 B
SQL
10 lines
No EOL
232 B
SQL
-- Your SQL goes here
|
|
|
|
CREATE TABLE users
|
|
(
|
|
id SERIAL NOT NULL PRIMARY KEY,
|
|
first_name TEXT NOT NULL,
|
|
last_name TEXT NOT NULL,
|
|
email TEXT NOT NULL,
|
|
created_at TIMESTAMP NOT NULL
|
|
); |