sqlx/examples/postgres/json/migrations/20200824190010_json.sql
2020-11-12 07:21:54 -08:00

6 lines
99 B
SQL

CREATE TABLE IF NOT EXISTS people
(
id BIGSERIAL PRIMARY KEY,
person JSONB NOT NULL
);