tables property

Future<List<MP>> get tables
override

Implementation

get tables => select('''
    SELECT name FROM sqlite_schema WHERE
    type ='table' AND
    name NOT LIKE 'sqlite_%';
  ''');