Wrapper function to create a new schema in a SQLite database for local development.

create_schema(schema, con)

Arguments

schema

Schema name

con

A SQLiteConnection-class object, produced by dbConnect() or shinyNotes::connect_sqlite()

Value

None. Executes SQL query and returns silently.

Examples

con <- connect_sqlite()
create_schema(con, schema = "demo")