diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2002-04-20 01:51:05 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2002-04-20 01:51:05 +0000 |
commit | 0a966e1ed42d1b7d0827b0318bcefb7101ac56df (patch) | |
tree | bdc4d12abea52551cab213a0628673e84c4c506f /update.php | |
parent | ab551f8c470eebac2b98c998f1322ceaf630e839 (diff) | |
download | brdo-0a966e1ed42d1b7d0827b0318bcefb7101ac56df.tar.gz brdo-0a966e1ed42d1b7d0827b0318bcefb7101ac56df.tar.bz2 |
Updated poll.module:
- Removed obsolete lid column (changed update.php and database.mysql)
- Added short help
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 64f4c4acb..9762f35fc 100644 --- a/update.php +++ b/update.php @@ -51,7 +51,8 @@ $mysql_updates = array( "2002-04-08" => "update_24", "2002-04-14 : modules/themes web config" => "update_25", "2002-04-14 : new taxonomy system" => "update_26", - "2002-04-16" => "update_27" + "2002-04-16" => "update_27", + "2002-04-20" => "update_28" ); // Update functions @@ -411,6 +412,10 @@ function update_27() { update_sql("ALTER TABLE book ADD log TEXT;"); } +function update_28() { + update_sql("ALTER TABLE poll DROP lid;"); +} + /* ** System functions */ |