createTableIfNotExists method
- @Deprecated('Use create() with ifNotExists parameter instead')
Implementation
@Deprecated('Use create() with ifNotExists parameter instead')
TableDefinition createTableIfNotExists(
String tableName,
Function(Schema) callback,
) {
return create(tableName, callback, true);
}