diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index d7ee210..9fbeeda 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -32,7 +32,6 @@
-
@@ -267,6 +266,7 @@
+
@@ -290,6 +290,7 @@
+
@@ -402,7 +403,7 @@
-
+
\ No newline at end of file
diff --git a/config/wildfly.deploy.properties b/config/wildfly.deploy.properties
index 87be933..8b8043b 100644
--- a/config/wildfly.deploy.properties
+++ b/config/wildfly.deploy.properties
@@ -55,6 +55,7 @@ org.bedework.war.names=bedework,\
bw-dotwell-known,\
pubcalwskt,\
ucalwskt,\
+ bw-synch-war,\
bw-webcache-war
# --------------------------------------------------------------------
diff --git a/src/main/asciidoc/deployers/databases.adoc b/src/main/asciidoc/deployers/databases.adoc
index 3f2a05e..e349f4e 100644
--- a/src/main/asciidoc/deployers/databases.adoc
+++ b/src/main/asciidoc/deployers/databases.adoc
@@ -50,6 +50,13 @@ create role bedework with login password 'xxxxxxxxx';
create database caldb owner bedework;
----
+Some or all of the following seems to be required. Note it also seems to be important to connect to the database first:
+----
+\c caldb
+GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO bw;
+grant all privileges on database caldbwalsh to bw;
+----
+
Set the hibernate dialect in the config file:
[source,xml]
----