Changeset 234
- Timestamp:
- 06/18/2003 01:20:04 AM (23 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/upgrade-071-to-072.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade-071-to-072.php
r233 r234 81 81 CREATE TABLE $tableoptions ( 82 82 option_id int(11) NOT NULL auto_increment, 83 blog_id int(11) not null default 0, 84 option_can_override enum ('Y','N') NOT NULL default 'Y', 83 85 option_name varchar(64) UNIQUE NOT NULL default '', 84 86 option_type int(11) NOT NULL default 1, … … 88 90 option_description tinytext NOT NULL default '', 89 91 option_admin_level int NOT NULL DEFAULT '1', 90 PRIMARY KEY (option_id )92 PRIMARY KEY (option_id, blog_id) 91 93 ) 92 94 "; … … 418 420 <p>OK. All settings transferred.</p> 419 421 <p>Congratulations! You have updated to the latest version of WordPress</p> 420 <p>You can now delete your b2config.php file </p>422 <p>You can now delete your b2config.php file, and go play with your <a href="<?php echo $siteurl; ?>">updated blog</a> </p> 421 423 <?php 422 424 break;
Note: See TracChangeset
for help on using the changeset viewer.