mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
restore previous liquibase version to fix issue with "filter" column not created with correct case in FEEDSUBSCRIPTIONS table
This commit is contained in:
5
pom.xml
5
pom.xml
@@ -294,6 +294,11 @@
|
|||||||
<artifactId>dropwizard-migrations</artifactId>
|
<artifactId>dropwizard-migrations</artifactId>
|
||||||
<version>${dropwizard.version}</version>
|
<version>${dropwizard.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.liquibase</groupId>
|
||||||
|
<artifactId>liquibase-core</artifactId>
|
||||||
|
<version>3.6.3</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dropwizard</groupId>
|
<groupId>io.dropwizard</groupId>
|
||||||
<artifactId>dropwizard-assets</artifactId>
|
<artifactId>dropwizard-assets</artifactId>
|
||||||
|
|||||||
@@ -63,9 +63,8 @@ public class StartupService implements Managed {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ResourceAccessor accessor = new ClassLoaderResourceAccessor(Thread.currentThread().getContextClassLoader());
|
ResourceAccessor accessor = new ClassLoaderResourceAccessor(Thread.currentThread().getContextClassLoader());
|
||||||
try (Liquibase liq = new Liquibase("migrations.xml", accessor, database)) {
|
Liquibase liq = new Liquibase("migrations.xml", accessor, database);
|
||||||
liq.update("prod");
|
liq.update("prod");
|
||||||
}
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
|
|||||||
Reference in New Issue
Block a user