diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 595395673..8edd2aa92 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1065 ); +define( 'UPDATE_VERSION' , 1066 ); /** * @@ -524,3 +524,8 @@ function update_1063() { function update_1064() { q("ALTER TABLE `item` ADD `app` CHAR( 255 ) NOT NULL AFTER `body` "); } + +function update_1065() { + q("ALTER TABLE `intro` ADD `fid` INT NOT NULL DEFAULT '0' AFTER `uid`"); +} + |