Skip to content

Commit

Permalink
Issue #2251: Adding mask definition table to database schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Apr 14, 2023
1 parent 9088366 commit 24649df
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/database/otobo-schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2103,6 +2103,14 @@
</Unique>
</Table>

<!-- dynamic field definitions for frontends -->
<Table Name="frontend_mask_definition">
<Column Name="mask" Required="true" PrimaryKey="true" Type="VARCHAR" size="80" />
<Column Name="definition" Required="true" Type="LONGBLOB" />
<Column Name="create_time" Required="false" Type="DATE" />
<Column Name="create_by" Required="false" Type="INTEGER" />
</Table>

<Table Name="pm_process">
<Column Name="id" Required="true" PrimaryKey="true" AutoIncrement="true" Type="INTEGER"/>
<!-- entity_id is a unique identifier independent from id -->
Expand Down

0 comments on commit 24649df

Please sign in to comment.