Skip to content

Commit

Permalink
[FIX] fieldType enum for properties (#588)
Browse files Browse the repository at this point in the history
Signed-off-by: Thang PHAM <[email protected]>
  • Loading branch information
thangqp authored Jan 14, 2025
1 parent 8acdae0 commit 9f0c266
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
<changeSet author="phamquy (generated)" id="1734359257002-1">
<update tableName="assignment">
<column name="edited_field" value="FREE_PROPERTIES"/>
<where>edited_field='PROPERTY'</where>
</update>
</changeSet>
</databaseChangeLog>
3 changes: 3 additions & 0 deletions src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -326,4 +326,7 @@ databaseChangeLog:
relativeToChangelogFile: true
- include:
file: changesets/changelog_20241219T103410Z.xml
relativeToChangelogFile: true
- include:
file: changesets/changelog_20250114T150006Z.xml
relativeToChangelogFile: true

0 comments on commit 9f0c266

Please sign in to comment.