Skip to content

Commit

Permalink
Merge pull request #34 from experius/feature/from-index
Browse files Browse the repository at this point in the history
[FEATURE][JIRA-1024] added index for from url
  • Loading branch information
lewisvoncken authored Mar 7, 2024
2 parents c634ca9 + e7e03f0 commit f72c51e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<table name="experius_page_not_found" resource="default" engine="innodb" comment="experius_page_not_found">
<column xsi:type="int" name="page_not_found_id" padding="10" unsigned="true" nullable="false" identity="true"
comment="Entity ID"/>
<column xsi:type="text" name="from_url" nullable="true" comment="from_url"/>
<column xsi:type="varchar" name="from_url" nullable="true" comment="from_url" length="520"/>
<column xsi:type="text" name="to_url" nullable="true" comment="to_url"/>
<column xsi:type="int" name="count" padding="11" unsigned="false" nullable="true" identity="false"
comment="count"/>
Expand All @@ -13,5 +13,8 @@
<constraint xsi:type="primary" referenceId="PRIMARY">
<column name="page_not_found_id"/>
</constraint>
<index referenceId="EXPERIUS_PAGE_NOT_FOUND_FROM_URL" indexType="btree">
<column name="from_url"/>
</index>
</table>
</schema>

0 comments on commit f72c51e

Please sign in to comment.