mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Clean up utf8mb4 setting in default table schema
This commit is contained in:
parent
f751d59708
commit
2cec4ea6b4
6 changed files with 11 additions and 7 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<table name="spamfilter_denied_ip">
|
||||
<column name="ipaddress" type="varchar" size="60" utf8mb4="false" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="ipaddress" type="varchar" size="60" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="hit" type="number" notnull="notnull" default="0" index="idx_hit" />
|
||||
<column name="latest_hit" type="date" index="idx_latest_hit" />
|
||||
<column name="description" type="varchar" size="255" />
|
||||
<column name="description" type="varchar" size="191" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<table name="spamfilter_denied_word">
|
||||
<column name="word" type="varchar" size="180" utf8mb4="false" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="word" type="varchar" size="100" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="hit" type="number" notnull="notnull" default="0" index="idx_hit" />
|
||||
<column name="latest_hit" type="date" index="idx_latest_hit" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue