Skip to content
Snippets Groups Projects
Commit ba3a15e8 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

PERS structure: nullable fields

parent b737058d
No related branches found
No related tags found
No related merge requests found
......@@ -6,10 +6,14 @@
<constraints primaryKey="true" primaryKeyName="PK_PERS_PERSID"/>
</column>
<column name="DATE_EDIT" type="TIMESTAMP"/>
<column name="DATE_NEW" type="TIMESTAMP"/>
<column name="DATE_NEW" type="TIMESTAMP">
<constraints nullable="false"/>
</column>
<column name="DATEOFBIRTH" type="DATE"/>
<column name="USER_EDIT" type="NVARCHAR(50)"/>
<column name="USER_NEW" type="NVARCHAR(50)"/>
<column name="USER_NEW" type="NVARCHAR(50)">
<constraints nullable="false"/>
</column>
<column name="FIRSTNAME" type="NVARCHAR(50)"/>
<column name="MIDDLENAME" type="NVARCHAR(50)"/>
<column name="LASTNAME" type="NVARCHAR(50)">
......
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