how to create a table from a known schema in sqlite3 code example
Example: sqlite create table if not exists
CREATE TABLE IF NOT EXISTS [schema_name].table_name (...);
CREATE TABLE IF NOT EXISTS [schema_name].table_name (...);