createIfNotExists abstract method

void createIfNotExists(
  1. String tableName,
  2. void callback(
    1. Blueprint table
    )
)

Creates the table if it does not exist already.

Implementation

void createIfNotExists(
  String tableName,
  void Function(Blueprint table) callback,
);