platform/angel_orm_postgres/test/migrations/has_map.sql

7 lines
167 B
MySQL
Raw Normal View History

2019-01-23 00:47:53 +00:00
CREATE TEMPORARY TABLE "has_maps" (
id serial PRIMARY KEY,
value jsonb not null,
2019-01-24 17:20:34 +00:00
list jsonb not null,
2019-01-23 00:47:53 +00:00
created_at timestamp,
updated_at timestamp
);