move class to proper package

This commit is contained in:
wea_ondara
2022-11-23 17:33:24 +01:00
parent 8b9659e867
commit f5cb7c93c5
4 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ package jef.platform;
import jef.platform.base.SqlTypeMapper; import jef.platform.base.SqlTypeMapper;
import jef.platform.base.DatabaseOptions; import jef.platform.base.DatabaseOptions;
import jef.platform.base.migration.MigrationApplier; import jef.platform.base.migration.MigrationApplier;
import jef.platform.base.MigrationOperationTranslator; import jef.platform.base.migration.MigrationOperationTranslator;
import java.sql.Connection; import java.sql.Connection;

View File

@@ -1,4 +1,4 @@
package jef.platform.base; package jef.platform.base.migration;
import jef.model.migration.operation.MigrationOperation; import jef.model.migration.operation.MigrationOperation;

View File

@@ -2,7 +2,7 @@ package jef.platform.nul;
import jef.platform.SqlPlatform; import jef.platform.SqlPlatform;
import jef.platform.base.DatabaseOptions; import jef.platform.base.DatabaseOptions;
import jef.platform.base.MigrationOperationTranslator; import jef.platform.base.migration.MigrationOperationTranslator;
import jef.platform.base.SqlTypeMapper; import jef.platform.base.SqlTypeMapper;
import jef.platform.base.migration.MigrationApplier; import jef.platform.base.migration.MigrationApplier;

View File

@@ -14,7 +14,7 @@ import jef.model.migration.operation.MigrationOperation;
import jef.model.migration.operation.RenameFieldOperation; import jef.model.migration.operation.RenameFieldOperation;
import jef.model.migration.operation.RenameTableOperation; import jef.model.migration.operation.RenameTableOperation;
import jef.model.migration.operation.UpdateFieldOperation; import jef.model.migration.operation.UpdateFieldOperation;
import jef.platform.base.MigrationOperationTranslator; import jef.platform.base.migration.MigrationOperationTranslator;
import java.sql.Connection; import java.sql.Connection;
import java.sql.PreparedStatement; import java.sql.PreparedStatement;