Create and share a single schema across multiple databases.
Create Parent Database
--type
flag set to schema
:Create Schema
CREATE TABLE
, CREATE TRIGGER
, CREATE VIEW
, and anything else to setup your schema:Create Child Database(s)
--schema
flag with the name of the parent database:Apply Additional Schema Changes
Create Parent Database
is_schema
field to true
:Create Schema
CREATE TABLE
, CREATE TRIGGER
, CREATE VIEW
, and anything else to setup your schema:Create Child Database(s)
schema
field the name of your parent database:Apply Additional Schema Changes
INSERT
rows into the parent database that can be queried by the child database(s).
/jobs
endpoint — learn more.