platform/angel_orm_generator/test/models/customer.up.g.sql

7 lines
125 B
MySQL
Raw Normal View History

2017-12-07 08:21:49 +00:00
CREATE TEMPORARY TABLE "customers" (
"id" serial,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);