platform/test/models/book.up.g.sql

7 lines
110 B
MySQL
Raw Normal View History

CREATE TABLE "books" (
"id" serial,
"name" varchar,
"created_at" timestamp,
"updated_at" timestamp
);