Skip to content

Commit 0d1fed3

Browse files
committed
Merge remote-tracking branch 'trigger/MAGETWO-96034' into 2.3.0-release-bugs
2 parents b4e5a8c + 52381c1 commit 0d1fed3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/Customer/etc/db_schema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@
506506
<column xsi:type="int" name="customer_id" padding="11" unsigned="false" nullable="true" identity="false"
507507
comment="Customer Id"/>
508508
<column xsi:type="varchar" name="session_id" nullable="true" length="64" comment="Session ID"/>
509-
<column xsi:type="timestamp" name="last_visit_at" on_update="true" nullable="true" default="CURRENT_TIMESTAMP"
509+
<column xsi:type="timestamp" name="last_visit_at" on_update="true" nullable="false" default="CURRENT_TIMESTAMP"
510510
comment="Last Visit Time"/>
511511
<constraint xsi:type="primary" referenceId="PRIMARY">
512512
<column name="visitor_id"/>

app/code/Magento/Integration/etc/db_schema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
comment="User type (admin or customer)"/>
137137
<column xsi:type="smallint" name="failures_count" padding="5" unsigned="true" nullable="true" identity="false"
138138
default="0" comment="Number of failed authentication attempts in a row"/>
139-
<column xsi:type="timestamp" name="lock_expires_at" on_update="true" nullable="true" default="CURRENT_TIMESTAMP"
139+
<column xsi:type="timestamp" name="lock_expires_at" on_update="true" nullable="false" default="CURRENT_TIMESTAMP"
140140
comment="Lock expiration time"/>
141141
<constraint xsi:type="primary" referenceId="PRIMARY">
142142
<column name="log_id"/>

app/code/Magento/Sales/etc/db_schema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@
769769
<column xsi:type="varchar" name="order_increment_id" nullable="false" length="32" comment="Order Increment Id"/>
770770
<column xsi:type="int" name="order_id" padding="10" unsigned="true" nullable="false" identity="false"
771771
comment="Order Id"/>
772-
<column xsi:type="timestamp" name="order_created_at" on_update="true" nullable="true"
772+
<column xsi:type="timestamp" name="order_created_at" on_update="true" nullable="false"
773773
default="CURRENT_TIMESTAMP" comment="Order Increment Id"/>
774774
<column xsi:type="varchar" name="customer_name" nullable="false" length="128" comment="Customer Name"/>
775775
<column xsi:type="decimal" name="total_qty" scale="4" precision="12" unsigned="false" nullable="true"

0 commit comments

Comments
 (0)