From 2e5d5130852e6ea0eebfeed35ede77812bed391f Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Thu, 5 Sep 2019 20:59:09 -0400 Subject: [PATCH] Use Flyway to deploy SQL schema to non-prod Added Gradle tasks to deploy and drop schema in alpha using Flyway. Use a custome dialect in GenerateSqlSchemaCommand to convert varchar type to 'text' and timestamp to 'timestamptz'. Corrected ClaimsEntry's revision_id column type to int8. This column tracks parent table's primary key and should not be bigserial. --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 651a1ea18f6..9c64a627e37 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,4 +14,4 @@ enableDependencyLocking=true dbServer= dbName=postgres dbUser= -dbPassword= \ No newline at end of file +dbPassword=