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

11 lines
219 B
MySQL
Raw Normal View History

2017-07-09 16:53:35 +00:00
CREATE TEMPORARY TABLE "cars" (
2017-06-30 22:39:17 +00:00
"id" serial,
2017-06-24 21:21:32 +00:00
"make" varchar,
"description" varchar,
2017-07-09 16:53:35 +00:00
"family_friendly" boolean,
2017-06-24 21:21:32 +00:00
"recalled_at" timestamp,
"created_at" timestamp,
2017-07-15 15:11:57 +00:00
"updated_at" timestamp,
PRIMARY KEY(id)
2017-06-24 21:21:32 +00:00
);