Skip to content
Snippets Groups Projects
Commit fe3c351d authored by Andreas Schindlbeck's avatar Andreas Schindlbeck
Browse files

#1060640 Favorites: add liquibase scripts

parent c235a9a5
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@
<include relativeToChangelogFile="true" file="struct/create_asys_roles.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_roles_children.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_usertoken.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_record.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_recordgroup.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_aliasconfig.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_system.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_permissionset.xml"/>
......
<?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: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">
<changeSet author="a.schindlbeck" id="55fc4812-a4b7-4a53-a369-8b644ec78cae">
<createTable tableName="ASYS_RECORD">
<column name="ID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_ID"/>
</column>
<column name="OBJECT_TYPE" type="VARCHAR(64)"/>
<column name="ROW_ID" type="CHAR(36)"/>
<column name="RECORDGROUP_ID" type="CHAR(36)"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?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: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">
<changeSet author="a.schindlbeck" id="56a34dfc-3c0d-48e1-8890-31c0c93f1942">
<createTable tableName="ASYS_RECORDGROUP">
<column name="ID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_GROUP_ID"/>
</column>
<column name="USER_CONTACT_ID" type="CHAR(36)"/>
<column name="TITLE" type="VARCHAR(256)"/>
<column name="GROUP_TYPE" type="VARCHAR(64)"/>
</createTable>
</changeSet>
</databaseChangeLog>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment