summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/archives/patch-site_stats-modify.sql
blob: c70dd001ad2ac8b7735ed635643325ade768f29c (plain)
1
2
3
4
5
6
7
ALTER TABLE /*_*/site_stats
	ALTER ss_total_edits SET DEFAULT NULL,
	ALTER ss_good_articles SET DEFAULT NULL,
	MODIFY COLUMN ss_total_pages bigint unsigned DEFAULT NULL,
	MODIFY COLUMN ss_users bigint unsigned DEFAULT NULL,
	MODIFY COLUMN ss_active_users bigint unsigned DEFAULT NULL,
	MODIFY COLUMN ss_images bigint unsigned DEFAULT NULL;