platform/angel_orm_postgres/test/migrations/author.sql
2019-04-08 12:58:41 -04:00

6 lines
No EOL
154 B
SQL

CREATE TEMPORARY TABLE "authors" (
id serial PRIMARY KEY,
name varchar(255) UNIQUE NOT NULL,
created_at timestamp,
updated_at timestamp
);