platform/angel_orm_postgres/test/migrations/custom_expr.sql

13 lines
270 B
MySQL
Raw Normal View History

2019-10-13 00:47:00 +00:00
CREATE TEMPORARY TABLE "numbers" (
id serial PRIMARY KEY,
created_at timestamp,
updated_at timestamp
);
CREATE TEMPORARY TABLE "alphabets" (
id serial PRIMARY KEY,
value TEXT,
numbers_id int,
created_at timestamp,
updated_at timestamp
);