createTableIfNotExists method

  1. @Deprecated('Use create() with ifNotExists parameter instead')
TableDefinition createTableIfNotExists(
  1. String tableName,
  2. dynamic callback(
    1. Schema
    )
)

Implementation

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