Shorten indexed varchar columns, remove meaningless size on some integer columns

This commit is contained in:
Kijin Sung 2021-01-19 21:46:44 +09:00
parent 8cd650abfe
commit 069ac6f679
8 changed files with 24 additions and 24 deletions

View file

@ -1,5 +1,5 @@
<table name="spamfilter_log">
<column name="spamfilter_log_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="ipaddress" type="varchar" size="250" notnull="notnull" index="idx_ipaddress" />
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_ipaddress" />
<column name="regdate" type="date" index="idx_regdate" />
</table>