Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _build/schema/versionx.mysql.schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
Deltas have a start and end time, because a delta may be the result of different
deltas that were merged.
-->
<field key="time_start" dbtype="timestamp" phptype="timestamp" null="false" />
<field key="time_end" dbtype="timestamp" phptype="timestamp" null="false" />
<field key="time_start" dbtype="timestamp" phptype="timestamp" null="true" />
<field key="time_end" dbtype="timestamp" phptype="timestamp" null="true" />

<index alias="principal_class" name="principal_class" primary="false" unique="false" type="BTREE">
<column key="principal_class" length="" collation="A" null="false" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@
array (
'dbtype' => 'timestamp',
'phptype' => 'timestamp',
'null' => false,
'null' => true,
),
'time_end' =>
array (
'dbtype' => 'timestamp',
'phptype' => 'timestamp',
'null' => false,
'null' => true,
),
),
'indexes' =>
Expand Down