mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
9 lines
221 B
SQL
9 lines
221 B
SQL
CREATE TABLE account2(
|
|
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
|
|
);
|