platform/angel_orm_generator/test/models/customer.up.g.sql
2017-12-07 03:21:49 -05:00

6 lines
125 B
SQL

CREATE TEMPORARY TABLE "customers" (
"id" serial,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);