All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.net.causal.maven.plugins.boxdb.db.postgres-create-database.sql Maven / Gradle / Ivy

\set ON_ERROR_STOP 1

CREATE DATABASE ${box.databaseName}
        WITH ENCODING='${box.databaseEncoding}'
        OWNER=${box.databaseUser}
        TEMPLATE=template0
        LC_COLLATE='${box.databaseCollation}'
        LC_CTYPE='${box.databaseCollation}';




© 2015 - 2024 Weber Informatics LLC | Privacy Policy