platform/angel_orm_postgres/test/migrations/song.sql

8 lines
190 B
MySQL
Raw Normal View History

2019-04-03 09:57:27 +00:00
CREATE TEMPORARY TABLE "songs" (
"id" serial,
"weird_join_id" int references weird_joins(id),
"title" varchar(255),
created_at TIMESTAMP,
updated_at TIMESTAMP,
PRIMARY KEY(id)
);