summaryrefslogtreecommitdiffstats
path: root/wp-admin
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-27 15:27:58 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-27 15:27:58 +0000
commitea570229e20d5052960484326d9054f7e321a40e (patch)
tree3c30d554a9814bdb172db255e354ca22b9b8efb0 /wp-admin
parentf15216f53efcacc3d93636c3c5a7601af7bff4be (diff)
downloadwordpress-mu-ea570229e20d5052960484326d9054f7e321a40e.tar.gz
wordpress-mu-ea570229e20d5052960484326d9054f7e321a40e.tar.xz
wordpress-mu-ea570229e20d5052960484326d9054f7e321a40e.zip
Make "archived" a tinyint (#19)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@605 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin')
-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 702fe4c..eff0a25 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 enum('0','1') NOT NULL default '0',
+ archived tinyint(2) 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',