Skip to content

Commit

Permalink
Fixed Value of created_at and updated_at columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Shikha Mishra authored Apr 15, 2019
1 parent 3ff0161 commit d334e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/Magento/Ui/etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
comment="Mark current bookmark per user and identifier"/>
<column xsi:type="varchar" name="title" nullable="true" length="255" comment="Bookmark title"/>
<column xsi:type="longtext" name="config" nullable="true" comment="Bookmark config"/>
<column xsi:type="datetime" name="created_at" on_update="false" nullable="false" comment="Bookmark created at"/>
<column xsi:type="datetime" name="updated_at" on_update="false" nullable="false" comment="Bookmark updated at"/>
<column xsi:type="datetime" name="created_at" on_update="false" nullable="false" default="CURRENT_TIMESTAMP" comment="Bookmark created at"/>
<column xsi:type="datetime" name="updated_at" on_update="true" nullable="false" default="CURRENT_TIMESTAMP" comment="Bookmark updated at"/>
<constraint xsi:type="primary" referenceId="PRIMARY">
<column name="bookmark_id"/>
</constraint>
Expand Down

0 comments on commit d334e2e

Please sign in to comment.