Revert "Separate the indexes in module_trigger table"

This reverts commit 48ee04d54d.
This commit is contained in:
Kijin Sung 2021-01-22 00:50:39 +09:00
parent 48ee04d54d
commit 9d040e10d7

View file

@ -1,7 +1,7 @@
<table name="module_trigger">
<column name="trigger_name" type="varchar" size="80" notnull="notnull" index="idx_trigger_position" utf8mb4="false" />
<column name="called_position" type="varchar" size="20" notnull="notnull" index="idx_trigger_position" utf8mb4="false" />
<column name="module" type="varchar" size="80" notnull="notnull" index="idx_module" utf8mb4="false" />
<column name="type" type="varchar" size="80" notnull="notnull" index="idx_type" utf8mb4="false" />
<column name="called_method" type="varchar" size="80" notnull="notnull" index="idx_called_method" utf8mb4="false" />
<column name="trigger_name" type="varchar" size="80" notnull="notnull" unique="idx_trigger" utf8mb4="false" />
<column name="called_position" type="varchar" size="15" notnull="notnull" unique="idx_trigger" utf8mb4="false" />
<column name="module" type="varchar" size="80" notnull="notnull" unique="idx_trigger" utf8mb4="false" />
<column name="type" type="varchar" size="15" notnull="notnull" unique="idx_trigger" utf8mb4="false" />
<column name="called_method" type="varchar" size="80" notnull="notnull" unique="idx_trigger" utf8mb4="false" />
</table>