createIfNotExists method

  1. @override
void createIfNotExists(
  1. String tableName,
  2. void callback(
    1. MigrationTable table
    )
)

Implementation

@override
void createIfNotExists(
        String tableName, void Function(MigrationTable table) callback) =>
    _create(tableName, callback, true);