createTable method

Future<void> createTable(
  1. DatabaseSchema schema
)

Helper to create a table from schema (skips if exists)

Implementation

Future<void> createTable(DatabaseSchema schema) async {
  await schemaManager.createTable(schema);
}