mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-01 11:19:42 +00:00
6 lines
99 B
SQL
6 lines
99 B
SQL
CREATE TABLE IF NOT EXISTS people
|
|
(
|
|
id BIGSERIAL PRIMARY KEY,
|
|
person JSONB NOT NULL
|
|
);
|