mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
9 lines
221 B
MySQL
9 lines
221 B
MySQL
|
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
|
||
|
);
|