migrations top-level property

List<Migration> migrations
final

Implementation

final List<Migration> migrations = [
  Migration(1, 3, (database) async {
    await database.execute(
        'INSERT INTO seg_usuario (nm_login, nm_senha, tp_usuario) VALUES (\'TIVIC\', \'433UQM!\', \'1\')');
    await database.execute(
        'INSERT INTO seg_usuario (nm_login, nm_senha, tp_usuario) VALUES (\'AGENTE\', \'433UQM!\', \'0\')');
    await database.execute(
        'INSERT INTO mob_agente (nm_agente, cd_usuario) VALUES (\'TIVICSON\', 2)');
  })
];