mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix types and sizes in counter module tables
This commit is contained in:
parent
fdb19f2e39
commit
9b18c48256
2 changed files with 5 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue