rename null classes to dummy classes
This commit is contained in:
@@ -3,7 +3,7 @@ package jef.main;
|
||||
import jef.model.DbContext;
|
||||
import jef.model.ModelBuilder;
|
||||
import jef.model.migration.creator.MigrationCreator;
|
||||
import jef.platform.nul.NullPlatform;
|
||||
import jef.platform.dummy.DummyPlatform;
|
||||
import jef.util.Util;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
@@ -124,7 +124,7 @@ public class MigrationCommandHandler {
|
||||
var targetFolderFile = new File(targetFolder);
|
||||
targetFolderFile.mkdirs();
|
||||
migrationPackage = findMigrationPackageName(targetFolder);
|
||||
var sqlPlatform = new NullPlatform();//TODO find out from migrations or -p param
|
||||
var sqlPlatform = new DummyPlatform();//TODO find out from migrations or -p param
|
||||
|
||||
//find data
|
||||
var currentSnapshotFile = new File(targetFolderFile, "CurrentSnapshot.java");
|
||||
|
||||
Reference in New Issue
Block a user