7 lines
106 B
Dart
7 lines
106 B
Dart
|
import 'schema.dart';
|
||
|
|
||
|
abstract class Migration {
|
||
|
void up(Schema schema);
|
||
|
void down(Schema schema);
|
||
|
}
|