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