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

7 lines
112 B
MySQL
Raw Normal View History

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