--- /dev/null
+#!/bin/sh
+
+dropdb --if-exists -U postgres agendav
+createdb -U postgres agendav
+psql -U postgres -d agendav < test/sql/agendav.sql
+psql -U postgres -d agendav < test/sql/agendav-fixtures.sql
+
+dropdb --if-exists -U postgres davical
+createdb -U postgres davical
+psql -U postgres -d davical < test/sql/davical.sql
+psql -U postgres -d davical < test/sql/davical-fixtures.sql
+
+dropdb --if-exists -U postgres postfixadmin
+createdb -U postgres postfixadmin
+psql -U postgres -d postfixadmin < test/sql/postfixadmin.sql
+psql -U postgres -d postfixadmin < test/sql/postfixadmin-fixtures.sql
+
+dropdb --if-exists -U postgres roundcube
+createdb -U postgres roundcube
+psql -U postgres -d roundcube < test/sql/roundcube.sql
+psql -U postgres -d roundcube < test/sql/roundcube-fixtures.sql