platform/angel_orm_postgres/test/migrations/user.sql

8 lines
191 B
MySQL
Raw Normal View History

2018-12-08 22:51:27 +00:00
CREATE TEMPORARY TABLE "users" (
"id" serial PRIMARY KEY,
"username" varchar(255),
"password" varchar(255),
"email" varchar(255),
"created_at" timestamp,
"updated_at" timestamp
);