platform/angel_orm_postgres/test/migrations/author.sql

6 lines
154 B
MySQL
Raw Normal View History

2018-12-03 23:13:11 +00:00
CREATE TEMPORARY TABLE "authors" (
id serial PRIMARY KEY,
name varchar(255) UNIQUE NOT NULL,
created_at timestamp,
updated_at timestamp
);