floor2drift 0.1.7
floor2drift: ^0.1.7 copied to clipboard
Floor2Drift is dart library to help you migrate from the Floor orm library to Drift.
// For more information on using floor2drift, please see https://github.com/ViveNoctem/Floor2Drift#getting-started
import 'package:floor2drift/floor2drift.dart';
import 'package:glob/glob.dart';
void main(List<String> arguments) async {
final generator = Floor2DriftGenerator(
dbPath: "../test_databases/floor_test_database.dart",
rootPath: "../",
classNameFilter: Glob("*task*", caseSensitive: false),
);
generator.start();
}