Skip to content
Snippets Groups Projects
Commit 95a00da0 authored by S.Listl's avatar S.Listl
Browse files

Systemalial indizes

parent c7aee1be
No related branches found
No related tags found
No related merge requests found
Showing
with 1583 additions and 339 deletions
{
"entries": [
{
"target": "aliasDefinition/Data_alias/Data_alias.aod",
"line": -1,
"description": "The table \"AB_LOGHISTORY\" has no primary key [65]",
"groupName": "nb-tasklist-warning"
},
{
"target": "aliasDefinition/Data_alias/Data_alias.aod",
"line": -1,
......
......@@ -4,4 +4,5 @@
<include relativeToChangelogFile="true" file="Classification/changelog.xml"/>
<include relativeToChangelogFile="true" file="ImportFields/changelog.xml"/>
<include relativeToChangelogFile="true" file="LeadimportMappingAssistant/changelog.xml"/>
<include relativeToChangelogFile="true" file="optimizeIndizes.xml"/>
</databaseChangeLog>
<?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 author="s.listl" id="a303ace0-b324-435a-84d8-7ef4d0419af8">
<createIndex tableName="COMMUNICATION" indexName="IDX_COMMUNICATION_MEDIUM_ID">
<column name="MEDIUM_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?xml version="1.0" encoding="UTF-8"?>
<sysDbVersion xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.2.0" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/sysDbVersion/1.2.0">
<name>_____SYSTEM_SYSDB_VERSION</name>
<systemDbVersion>2.8.3</systemDbVersion>
<systemDbVersion>2.8.5</systemDbVersion>
</sysDbVersion>
......@@ -7,7 +7,7 @@
<column name="DATE_NEW" valueDate="2018-05-24T14:53:57.763"/>
<column name="KIND" valueNumeric="600"/>
<column name="NAME" value="_____SYSTEM_SYSDB_VERSION"/>
<column name="TITLE" value="2.8.3"/>
<column name="TITLE" value="2.8.5"/>
<column name="USER_EDIT" value="_____DESIGNERANONYM"/>
<column name="USER_NEW" value="_____DESIGNERANONYM"/>
<column name="XMLDATA" valueBlobFile="defaultBlob/_____system_sysdb_version.xml"/>
......
......@@ -21,5 +21,8 @@
<column name="DATE_EDIT" type="DATETIME"/>
<column name="DATE_NEW" type="DATETIME"/>
</createTable>
<createIndex tableName="ASYS_BINARIES" indexName="IDX_ASYS_BINARIES_ROW_ID">
<column name="ROW_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
......@@ -23,5 +23,8 @@
<createIndex indexName="idx_asysusers_groupid" tableName="ASYS_USERS">
<column name="GROUPID"/>
</createIndex>
<createIndex indexName="IDX_ASYS_USERS_NAME" tableName="ASYS_USERS">
<column name="NAME"/>
</createIndex>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
......@@ -1213,7 +1213,7 @@
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<index v="true" />
<title>Medium</title>
<description></description>
<customProperties>
......@@ -6337,7 +6337,7 @@
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title>Activity Id</title>
<description></description>
......@@ -13766,6 +13766,20 @@
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>ATTRIBUTE_INDUSTRY</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="100" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
</entityFields>
</entityDb>
<entityDb>
......
This diff is collapsed.
......@@ -17,7 +17,7 @@ else
var values = ["true", "false"];
if (vars.exists("$param.OnlyActives_param") && vars.get("$param.OnlyActives_param") == "true")
values = ["true"];
users = tools.getUsersByAttribute(tools.ISACTIVE, values, tools.PROFILE_FULL);
users = tools.getUsersByAttribute(tools.ISACTIVE, values, tools.PROFILE_DEFAULT);
}
users = users.map(function (user)
......@@ -83,8 +83,6 @@ var filterFns = {
};
users = JditoFilterUtils.filterRecords(filterFields, users, filter.filter, filterFns);
users.forEach(function (user) {user[12] = "";}); //clean up the ROLE_FILTER field, we don't need it after filtering
var order = vars.get("$local.order");
var columnOrder = {
"TITLE.value" : 1,
......
......@@ -48,10 +48,6 @@
<name>acf1037c-e198-4b2d-9c7f-a2438fa70089</name>
<entityField>EMAIL_ADDRESS</entityField>
</neonTableColumn>
<neonTableColumn>
<name>5acac530-7ff7-4fd1-ac48-4a9c441a8b13</name>
<entityField>DESCRIPTION</entityField>
</neonTableColumn>
</columns>
</tableViewTemplate>
</children>
......
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