createTable method
Implementation
@override
Future<void> createTable(IDatabaseTable table) async {
db ??= await _db;
final cmd = CreateTableCommandBuilder(table).command;
await db!.execute(cmd);
}
@override
Future<void> createTable(IDatabaseTable table) async {
db ??= await _db;
final cmd = CreateTableCommandBuilder(table).command;
await db!.execute(cmd);
}