Fix types and sizes in counter module tables

This commit is contained in:
Kijin Sung 2025-09-04 01:03:37 +09:00
parent fdb19f2e39
commit 9b18c48256
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
<table name="counter_log">
<column name="site_srl" type="number" size="11" notnull="notnull" default="0" index="idx_site_counter_log" />
<column name="site_srl" type="bigint" notnull="notnull" default="0" index="idx_site_counter_log" />
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_site_counter_log" />
<column name="regdate" type="date" index="idx_counter_log" />
<column name="regdate" type="date" notnull="notnull" index="idx_counter_log" />
<column name="user_agent" type="varchar" size="250" />
</table>

View file

@ -1,5 +1,5 @@
<table name="counter_status">
<column name="regdate" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="unique_visitor" type="number" size="11" default="0" />
<column name="pageview" type="number" size="11" default="0" />
<column name="regdate" type="int" notnull="notnull" primary_key="primary_key" />
<column name="unique_visitor" type="bigint" notnull="notnull" default="0" />
<column name="pageview" type="bigint" notnull="notnull" default="0" />
</table>