createTable method
Helper to create a table from schema (skips if exists)
Implementation
Future<void> createTable(DatabaseSchema schema) async {
await schemaManager.createTable(schema);
}
Helper to create a table from schema (skips if exists)
Future<void> createTable(DatabaseSchema schema) async {
await schemaManager.createTable(schema);
}