-
Notifications
You must be signed in to change notification settings - Fork 1
Database Configuration
NaniiGheorghe edited this page Dec 26, 2018
·
2 revisions
In order to install/update database next steps needs to be performed:
- Create a database with name 'acs_db'.
- Create a new role 'user_ac'.
- Create new schema 'acs'.
- 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
- Check table databasechangelog if there are unexecuted migrations.
Home Page