diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-17 12:07:31 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-17 12:07:31 +0000 |
commit | f179b1f7c6d0282998d05c6233fe90e4aa66189f (patch) | |
tree | 9849bf6eefa7dcd05935a88cba766936e26b967d /modules/statistics/statistics.install | |
parent | 1d9df22742c3110e1322829c285dcfa6a4a603d3 (diff) | |
download | brdo-f179b1f7c6d0282998d05c6233fe90e4aa66189f.tar.gz brdo-f179b1f7c6d0282998d05c6233fe90e4aa66189f.tar.bz2 |
- Patch #278592 by catch, Dave Reid, andypost, lilou, sun, tobiasb: sync 6.x extra updates with HEAD.
Diffstat (limited to 'modules/statistics/statistics.install')
-rw-r--r-- | modules/statistics/statistics.install | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/modules/statistics/statistics.install b/modules/statistics/statistics.install index 5fd499707..c681532f9 100644 --- a/modules/statistics/statistics.install +++ b/modules/statistics/statistics.install @@ -134,18 +134,29 @@ function statistics_schema() { } /** - * @defgroup updates-6.x-to-7.x System updates from 6.x to 7.x + * @defgroup updates-6.x-extra Extra statistics updates for 6.x * @{ */ /** * Allow longer referrers. */ -function statistics_update_7000() { +function statistics_update_6000() { db_change_field('accesslog', 'url', 'url', array('type' => 'text', 'not null' => FALSE)); } /** + * @} End of "defgroup updates-6.x-extra" + * The next series of updates should start at 7000. + */ + + +/** + * @defgroup updates-6.x-to-7.x statistics updates from 6.x to 7.x + * @{ + */ + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |