Skip to content

Commit 975de7e

Browse files
Ja bist du narrischJa bist du narrisch
authored andcommitted
Fix namespace MySQL
1 parent 4cd2551 commit 975de7e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/Migrator/ProviderFactory.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
using System.Collections.Generic;
1616
using System.Data;
1717
using System.Reflection;
18+
using DotNetProjects.Migrator.Providers.Impl.Mysql;
1819
using Migrator.Framework;
1920
using Migrator.Providers;
2021
using Migrator.Providers.Impl.DB2;

src/Migrator/Providers/Impl/Mysql/MariaDBDialect.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System.Data;
2+
using DotNetProjects.Migrator.Providers.Impl.Mysql;
23
using Migrator.Framework;
34

45
namespace Migrator.Providers.Mysql;

src/Migrator/Providers/Impl/Mysql/MysqlDialect.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
using System;
22
using System.Data;
33
using Migrator.Framework;
4+
using Migrator.Providers;
45

5-
namespace Migrator.Providers.Mysql;
6+
namespace DotNetProjects.Migrator.Providers.Impl.Mysql;
67

78
public class MysqlDialect : Dialect
89
{

0 commit comments

Comments
 (0)