summaryrefslogtreecommitdiffstats
path: root/wp-admin/upgrade-schema.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-28 12:05:07 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-28 12:05:07 +0000
commitcc1f25a6ce00063f149c5a212e58abbc353876b9 (patch)
tree931bdebaca9482bb78f1fabe4918bd860cb1d4f4 /wp-admin/upgrade-schema.php
parent62cc53d7c7a4c728269e7d839c87f4a83d663c18 (diff)
downloadwordpress-mu-cc1f25a6ce00063f149c5a212e58abbc353876b9.tar.gz
wordpress-mu-cc1f25a6ce00063f149c5a212e58abbc353876b9.tar.xz
wordpress-mu-cc1f25a6ce00063f149c5a212e58abbc353876b9.zip
archived is an enum again. Converting existing blogs to tinyint makes them all archived (#46)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@611 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/upgrade-schema.php')
-rw-r--r--wp-admin/upgrade-schema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/upgrade-schema.php b/wp-admin/upgrade-schema.php
index eff0a25..702fe4c 100644
--- a/wp-admin/upgrade-schema.php
+++ b/wp-admin/upgrade-schema.php
@@ -155,7 +155,7 @@ CREATE TABLE $wpdb->blogs (
registered datetime NOT NULL default '0000-00-00 00:00:00',
last_updated datetime NOT NULL default '0000-00-00 00:00:00',
public tinyint(2) NOT NULL default '1',
- archived tinyint(2) NOT NULL default '0',
+ archived enum('0','1') NOT NULL default '0',
mature tinyint(2) NOT NULL default '0',
spam tinyint(2) NOT NULL default '0',
deleted tinyint(2) NOT NULL default '0',