up method
Migration up - create/modify schema
Implementation
@override
Future<void> up() async {
if (upSqlStatements != null && upSqlStatements!.isNotEmpty) {
for (final sql in upSqlStatements!) {
await connection.execute(sql);
}
} else if (upSql.isNotEmpty) {
await connection.execute(upSql);
}
}