mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-05 16:54:50 +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
|
|
);
|