Skip to content

Commit

Permalink
Fix wrong types
Browse files Browse the repository at this point in the history
  • Loading branch information
Prometee committed Jun 24, 2024
1 parent 975dc27 commit c050e5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Resources/config/doctrine/Message.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
</join-table>
</many-to-many>

<field name="createdAt" column="created_at" type="datetime">
<field name="createdAt" column="created_at" type="datetime_immutable">
<gedmo:timestampable on="create"/>
</field>

<field name="updatedAt" column="updated_at" type="datetime">
<field name="updatedAt" column="updated_at" type="datetime_immutable">
<gedmo:timestampable on="update"/>
</field>

<field name="templateHtml" column="template_html" type="string" nullable="true" />
<field name="templateHtml" column="template_html" type="text" nullable="true" />
<field name="fromDate" column="from_date" type="datetime" nullable="true" />
<field name="toDate" column="to_date" type="datetime" nullable="true" />
</mapped-superclass>
Expand Down

0 comments on commit c050e5f

Please sign in to comment.