diff --git a/.liquibase/Data_alias/basic/2019.2.1/changelog.xml b/.liquibase/Data_alias/basic/2019.2.1/changelog.xml index 78f40808321fa4d8667d033f0943043319c605e2..760c8f453f66ed38fd346408e1f3473bfd6ddc4f 100644 --- a/.liquibase/Data_alias/basic/2019.2.1/changelog.xml +++ b/.liquibase/Data_alias/basic/2019.2.1/changelog.xml @@ -1,5 +1,5 @@ <?xml version="1.1" encoding="UTF-8" standalone="no"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> - + <include relativeToChangelogFile="true" file="update_attribute_Ticket_Support_Product.xml"/> </databaseChangeLog> diff --git a/.liquibase/Data_alias/basic/2019.2.1/update_attribute_Ticket_Support_Product.xml b/.liquibase/Data_alias/basic/2019.2.1/update_attribute_Ticket_Support_Product.xml new file mode 100644 index 0000000000000000000000000000000000000000..adc095cef072fc4bf8f0c122a4067377ccacfdec --- /dev/null +++ b/.liquibase/Data_alias/basic/2019.2.1/update_attribute_Ticket_Support_Product.xml @@ -0,0 +1,22 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> + <changeSet id="8fc5d294-43b5-4b1c-af5f-cded38dee6f0" author="a.loreth"> + <update tableName="AB_ATTRIBUTE"> + <column name="DROPDOWNDEFINITION" value="Product_entity" /> + <where>AB_ATTRIBUTEID = ?</where> + <whereParams> + <param value="af312508-8a9b-4b8f-88f3-6b98005c749e" /> + </whereParams> + </update> + <rollback> + <update tableName="AB_ATTRIBUTE"> + <column name="DROPDOWNDEFINITION" value="Product" /> + <where>AB_ATTRIBUTEID = ?</where> + <whereParams> + <param value="af312508-8a9b-4b8f-88f3-6b98005c749e" /> + </whereParams> + </update> + </rollback> + </changeSet> +</databaseChangeLog> diff --git a/.liquibase/Data_alias/changelog.xml b/.liquibase/Data_alias/changelog.xml index 76148abdb97c4f986cae214bd9ebdf04ea5b69e7..20071741803c2e51aa5c685e51cd78d2250301df 100644 --- a/.liquibase/Data_alias/changelog.xml +++ b/.liquibase/Data_alias/changelog.xml @@ -2,6 +2,7 @@ <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" 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/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> <include relativeToChangelogFile="true" file="basic/init/init.xml"/> <include relativeToChangelogFile="true" file="basic/2019.1.4/changelog.xml"/> + <include relativeToChangelogFile="true" file="basic/2019.2.1/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/_demoData/changelog.xml" context="example"/> </databaseChangeLog> \ No newline at end of file