createTables method

void createTables()

Create all tables for the mbtiles file.

Requires editable to be true.

Implementation

void createTables() {
  assert(editable, _notEditableAssertMsg);
  _metadataRepo.createTable();
  _tileRepo.createTable();
}