5 lines
107 B
SQL
5 lines
107 B
SQL
CREATE TABLE users(
|
|
id uuid PRIMARY KEY,
|
|
email TEXT NOT NULL UNIQUE,
|
|
password TEXT NOT NULL
|
|
);
|