fixed duplicate version numbers in migrations #556

Merged
maverick.studer merged 1 commits from migration-version-fix into master 2024-06-21 12:12:41 +02:00

View File

@ -11,15 +11,15 @@ import lombok.extern.slf4j.Slf4j;
@Slf4j
@Setter
@Service
public class StorageToMongoMigration17 extends Migration {
public class StorageToMongoMigration18 extends Migration {
private final StorageToMongoCopyService storageToMongoCopyService;
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);
this.storageToMongoCopyService = storageToMongoCopyService;