platform/angel_orm_generator/test/migrations/user.sql
2019-02-14 12:15:34 -05:00

8 lines
No EOL
191 B
SQL
Executable file

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