Link to final part of upgrade

git-svn-id: http://svn.automattic.com/wordpress/trunk@262 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
mikelittle 2003-07-20 21:15:37 +00:00
parent cea697b234
commit 87bed677d1

View File

@ -201,6 +201,7 @@ if ($got_row) {
$query = "ALTER TABLE $tableposts ADD COLUMN post_excerpt text NOT NULL;"; $query = "ALTER TABLE $tableposts ADD COLUMN post_excerpt text NOT NULL;";
$q = $wpdb->query($query); $q = $wpdb->query($query);
// 0.71 mods
$query = "ALTER TABLE $tableposts ADD post_status ENUM('publish','draft','private') NOT NULL, $query = "ALTER TABLE $tableposts ADD post_status ENUM('publish','draft','private') NOT NULL,
ADD comment_status ENUM('open','closed') NOT NULL, ADD comment_status ENUM('open','closed') NOT NULL,
ADD ping_status ENUM('open','closed') NOT NULL, ADD ping_status ENUM('open','closed') NOT NULL,
@ -247,6 +248,7 @@ $q = $wpdb->query($query);
<p>Don't forget to CHMOD the <code>weblogs.com.changes.cache</code> file and you'll <p>Don't forget to CHMOD the <code>weblogs.com.changes.cache</code> file and you'll
be A-okay. Welcome to the family.</p> be A-okay. Welcome to the family.</p>
<p>Now there is one more step to the upgrade process. <a href="upgrade-071-to-072.php">Continue upgrade</a></p>
<?php <?php
break; break;
} }