Skip to content

Commit

Permalink
remediating code review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasrob committed Mar 1, 2015
1 parent 2eb2c6c commit 279c551
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spring.jpa.hibernate.ddl-auto=validate
spring.datasource.url=jdbc:postgresql://localhost:5432/
spring.datasource.url=${jdbc.url}
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.datasource.driverClassName=org.postgresql.Driver
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">



<changeSet id="003_alter_conference_session_table" author="Jonas">
<comment>Alter conference session table</comment>

<modifyDataType
columnName="room_id"
newDataType="integer"
schemaName="conf_admin"
tableName="conference_session"/>


</changeSet>

</databaseChangeLog>

1 comment on commit 279c551

@chenry
Copy link
Contributor

@chenry chenry commented on 279c551 Mar 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The only thing that was missing was adding this new db file to the master db change log. After doing that, everything is working the way that it should. Thanks @jonasrob

Please sign in to comment.