platform/angel_orm_postgres/test/migrations/user.sql
2019-04-08 12:58:41 -04:00

8 lines
No EOL
191 B
SQL

CREATE TEMPORARY TABLE "users" (
"id" serial PRIMARY KEY,
"username" varchar(255),
"password" varchar(255),
"email" varchar(255),
"created_at" timestamp,
"updated_at" timestamp
);