Skip to content

Commit

Permalink
remove mysql driver config
Browse files Browse the repository at this point in the history
  • Loading branch information
necessarylion committed Dec 30, 2023
1 parent f0bc1e7 commit 9557189
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/dox-query-builder/test/model_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import 'models/blog_info/blog_info.model.dart';
void main() {
group('Model |', () {
setUp(() async {
SqlQueryBuilder.initialize(
database: await poolConnection(), driver: Driver.mysql);
SqlQueryBuilder.initialize(database: await poolConnection());
await Schema.create('blog', (Table table) {
table.id('uid');
table.string('title');
Expand Down

0 comments on commit 9557189

Please sign in to comment.