diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..94f480de9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf \ No newline at end of file diff --git a/core/src/main/java/org/nzbhydra/migration/MigrationFilenames.java b/core/src/main/java/org/nzbhydra/migration/MigrationFilenames.java index dcd9ce789..9cf7078b8 100644 --- a/core/src/main/java/org/nzbhydra/migration/MigrationFilenames.java +++ b/core/src/main/java/org/nzbhydra/migration/MigrationFilenames.java @@ -12,7 +12,6 @@ public class MigrationFilenames { public String apiAccesses; public String downloads; public String indexerSearches; - public String indexerStatuses; public String indexers; public String searches; diff --git a/core/src/main/java/org/nzbhydra/migration/SqliteMigration.java b/core/src/main/java/org/nzbhydra/migration/SqliteMigration.java index 02d01b2f4..7a3d3d801 100644 --- a/core/src/main/java/org/nzbhydra/migration/SqliteMigration.java +++ b/core/src/main/java/org/nzbhydra/migration/SqliteMigration.java @@ -77,7 +77,6 @@ public class SqliteMigration { entityManager.createNativeQuery("TRUNCATE TABLE INDEXERAPIACCESS").executeUpdate(); entityManager.createNativeQuery("TRUNCATE TABLE indexersearch").executeUpdate(); entityManager.createNativeQuery("TRUNCATE TABLE search").executeUpdate(); - entityManager.createNativeQuery("TRUNCATE TABLE indexerstatus").executeUpdate(); entityManager.createNativeQuery("TRUNCATE TABLE indexernzbdownload").executeUpdate(); entityManager.createNativeQuery("TRUNCATE TABLE SEARCHRESULT").executeUpdate(); entityManager.createNativeQuery("TRUNCATE TABLE indexer").executeUpdate(); diff --git a/core/src/main/resources/changelog.json b/core/src/main/resources/changelog.json index fc2bef7ae..7c6040303 100644 --- a/core/src/main/resources/changelog.json +++ b/core/src/main/resources/changelog.json @@ -1,4 +1,13 @@ [ + { + "version": "v1.4.3", + "changes": [ + { + "type": "fix", + "text": "Migration failed because of missing datatabase table" + } + ] + }, { "version": "v1.4.2", "changes": [