r70791 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r70790‎ | r70791 | r70792 >
Date:03:07, 10 August 2010
Author:jeroendedauw
Status:deferred
Tags:
Comment:
Schema change
Modified paths:
  • /trunk/extensions/Distribution/distribution.sql (modified) (history)

Diff [purge]

Index: trunk/extensions/Distribution/distribution.sql
@@ -13,8 +13,13 @@
1414 CREATE TABLE IF NOT EXISTS /*$wgDBprefix*/distribution_units (
1515 unit_id INT(8) unsigned NOT NULL auto_increment PRIMARY KEY,
1616 unit_name VARCHAR(255) NOT NULL,
17 - -- Latest stable release.
18 - unit_current INT(8) unsigned NOT NULL
 17+ -- Latest stable release id.
 18+ unit_current INT(8) unsigned NOT NULL,
 19+ -- Select info of the latest release to avoid extra lookups.
 20+ current_version_nr VARCHAR(20) NOT NULL,
 21+ current_desc BLOB NOT NULL,
 22+ current_authors BLOB NOT NULL,
 23+ current_url VARCHAR(255) NULL
1924 -- early adoptor stuff can be here
2025 ) /*$wgDBTableOptions*/;
2126

Status & tagging log