mirror of
https://github.com/Noratrieb/karlauth.git
synced 2026-01-15 14:55:01 +01:00
10 lines
No EOL
241 B
SQL
10 lines
No EOL
241 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
|
|
); |