CREATE SCHEMA
await client.exec({
createSchema: 'Mountains',
ifNotExists: true,
});
// sql: CREATE SCHEMA IF NOT EXISTS "Mountains"
Last updated
await client.exec({
createSchema: 'Mountains',
ifNotExists: true,
});
// sql: CREATE SCHEMA IF NOT EXISTS "Mountains"
Last updated