fixed duplicate version numbers in migrations
This commit is contained in:
parent
436368b5e6
commit
808ce8cbaf
@ -11,15 +11,15 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
@Setter
|
@Setter
|
||||||
@Service
|
@Service
|
||||||
public class StorageToMongoMigration17 extends Migration {
|
public class StorageToMongoMigration18 extends Migration {
|
||||||
|
|
||||||
private final StorageToMongoCopyService storageToMongoCopyService;
|
private final StorageToMongoCopyService storageToMongoCopyService;
|
||||||
|
|
||||||
private static final String NAME = "Migration for entity log storage from s3 to mongodb";
|
private static final String NAME = "Migration for entity log storage from s3 to mongodb";
|
||||||
private static final long VERSION = 17;
|
private static final long VERSION = 18;
|
||||||
|
|
||||||
|
|
||||||
public StorageToMongoMigration17(StorageToMongoCopyService storageToMongoCopyService) {
|
public StorageToMongoMigration18(StorageToMongoCopyService storageToMongoCopyService) {
|
||||||
|
|
||||||
super(NAME, VERSION);
|
super(NAME, VERSION);
|
||||||
this.storageToMongoCopyService = storageToMongoCopyService;
|
this.storageToMongoCopyService = storageToMongoCopyService;
|
||||||
Loading…
x
Reference in New Issue
Block a user