Skip to content

Commit

Permalink
Change install that typeid instead of type column is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Oct 22, 2024
1 parent ef0a12b commit 5cc9315
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion db/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@
<FIELDS>
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
<FIELD NAME="foreignkey" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false"/>
<FIELD NAME="type" TYPE="char" LENGTH="32" NOTNULL="true" SEQUENCE="false"/>
<FIELD NAME="typeid" TYPE="int" LENGTH="3" NOTNULL="true" SEQUENCE="false"/>
<FIELD NAME="languageid" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false"/>
<FIELD NAME="string" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
</FIELDS>
<KEYS>
<KEY NAME="primary" TYPE="primary" FIELDS="id" COMMENT="Primary key for language"/>
<KEY NAME="verbalfeedback_language" TYPE="foreign" FIELDS="languageid" REFTABLE="verbalfeedback_language" REFFIELDS="id"/>
</KEYS>
<INDEXES>
<INDEX NAME="subitemtype" UNIQUE="false" FIELDS="foreignkey, typeid"/>
</INDEXES>
</TABLE>
<TABLE NAME="verbalfeedback_template" COMMENT="Verbalfeedback templates">
<FIELDS>
Expand Down

0 comments on commit 5cc9315

Please sign in to comment.