Data Sync determines what configuration data tables to export based on the contents of the config-db.xml file found in the install_dir/database/cdt directory.
If you want to include custom hub-level configuration tables, you must add them to the config-db.xml file. These tables are exported as part of the HubConfiguration table group.
<Group Name="Custom Tables">
<Table Name="CUSTOM_CONFIG_TABLE_1">
<Table Name="CUSTOM_CONFIG_TABLE_2">
</Group>
For Windows: deployer.cmd -t resourcejar
For Linux/UNIX: deployer.sh -t resourcejar
If you want to include a custom organization-based configuration table (that is, extend a table that is itself a child of YFS_ORGANIZATION), you must add it to the config-db.xml file. For example, the following instructions describe how to extend YFS_USER_GROUP.
<Group Name="UserGroup">
<Table Name="YFS_USER_GROUP">
<Table Name="YFS_DATA_ACCESS_POL_OVERRIDE"/>
</Table>
</Group>
<Group Name="UserGroup">
<Table Name="YFS_USER_GROUP">
<Table Name="YFS_MY_CUSTOM_TABLE"/>
<Table Name="YFS_DATA_ACCESS_POL_OVERRIDE"/>
</Table>
</Group>
For Windows: deployer.cmd -t resourcejar
For Linux/UNIX: deployer.sh -t resourcejar