down method
Implementation
@override
void down(SchemaBuilder schema) {
final sql = _readRequired(downPath, label: 'down.sql');
if (sql.trim().isEmpty) return;
schema.raw(sql);
}
@override
void down(SchemaBuilder schema) {
final sql = _readRequired(downPath, label: 'down.sql');
if (sql.trim().isEmpty) return;
schema.raw(sql);
}