mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
9 lines
234 B
SQL
9 lines
234 B
SQL
CREATE TABLE IF NOT EXISTS account(
|
|
user_id serial PRIMARY KEY,
|
|
username VARCHAR (50) UNIQUE NOT NULL,
|
|
password VARCHAR (50) NOT NULL,
|
|
email VARCHAR (355) UNIQUE NOT NULL,
|
|
created_on TIMESTAMP NOT NULL,
|
|
last_login TIMESTAMP
|
|
);
|