platform/angel_orm_mysql/test/migrations/user.sql

8 lines
191 B
MySQL
Raw Normal View History

2019-04-08 17:08:54 +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
);