summaryrefslogtreecommitdiff
path: root/modules/extra/stats/m_chanstats.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-11-07 12:31:47 +0000
committerSadie Powell <sadie@witchery.services>2024-11-07 12:31:47 +0000
commit98c840eb02e3ed63dbf9e70782f64cdfdabc4fe6 (patch)
treefc618d429d33cef863ceeef34a6ba5acaffaf071 /modules/extra/stats/m_chanstats.cpp
parent7d5ca5c90b08435afaabdbf037280b3fdc965cd4 (diff)
Expand the size of some chanstats columns.
Closes #444.
Diffstat (limited to 'modules/extra/stats/m_chanstats.cpp')
-rw-r--r--modules/extra/stats/m_chanstats.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/stats/m_chanstats.cpp b/modules/extra/stats/m_chanstats.cpp
index b23e65859..cccf4021b 100644
--- a/modules/extra/stats/m_chanstats.cpp
+++ b/modules/extra/stats/m_chanstats.cpp
@@ -277,8 +277,8 @@ class MChanstats : public Module
"`chan` varchar(64) NOT NULL DEFAULT '',"
"`nick` varchar(64) NOT NULL DEFAULT '',"
"`type` ENUM('total', 'monthly', 'weekly', 'daily') NOT NULL,"
- "`letters` int(10) unsigned NOT NULL DEFAULT '0',"
- "`words` int(10) unsigned NOT NULL DEFAULT '0',"
+ "`letters` bigint unsigned NOT NULL DEFAULT '0',"
+ "`words` bigint unsigned NOT NULL DEFAULT '0',"
"`line` int(10) unsigned NOT NULL DEFAULT '0',"
"`actions` int(10) unsigned NOT NULL DEFAULT '0',"
"`smileys_happy` int(10) unsigned NOT NULL DEFAULT '0',"