Skip to content

Database Configuration

NaniiGheorghe edited this page Dec 26, 2018 · 2 revisions

In order to install/update database next steps needs to be performed:

  1. Create a database with name 'acs_db'.
  2. Create a new role 'user_ac'.
  3. Create new schema 'acs'.
  4. Apply migrations:
  • Use the next command to apply migrations:
    liquibase
    --driver=org.postgresql.Driver
    --classpath="path to postgresql jar"\postgresql-9.4.1212.jre7.jar
    --changeLogFile="path to db changelog master file"\db.changelog-master.xml
    --url="jdbc:postgresql://localhost:5432/acs_db"
    --username=user_acs
    --password=aozhnl
    --defaultSchemaName=acs
    update
  1. Check table databasechangelog if there are unexecuted migrations.

Home Page

Clone this wiki locally