sqlQueryDropAllTables method

String sqlQueryDropAllTables()
inherited

SQL Query string for drop tables

Implementation

String sqlQueryDropAllTables() => '''
  ${columnsIndexed.map(sqlQueryDropIndex).join('\n')}
  ${sqlQueryDropFts()}
  ${sqlQueryDropMainTable()}
''';