7 lines
163 B
SQL
7 lines
163 B
SQL
CREATE TABLE users (
|
|
"user" UUID NOT NULL,
|
|
created_at TIMESTAMP NOT NULL,
|
|
updated_at TIMESTAMP,
|
|
username text NOT NULL,
|
|
"password" text NOT NULL
|
|
) |