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

8 lines
No EOL
190 B
SQL

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)
);