It's unreasonable to expect newbies to know that "bug 12345" means "Task T14345" except where it doesn't, so let's just standardise on the real numbers. This includes renaming fixBug20757.php to fixT22757.php for similar consistency. Change-Id: If81a590d658fbd82c20c54ac47dfdc8856745ca3
8 lines
193 B
SQL
8 lines
193 B
SQL
--
|
|
-- patch-archive-ar_id.sql
|
|
--
|
|
-- T41675. Add archive.ar_id.
|
|
|
|
ALTER TABLE /*$wgDBprefix*/archive
|
|
ADD COLUMN ar_id int unsigned NOT NULL AUTO_INCREMENT FIRST,
|
|
ADD PRIMARY KEY (ar_id);
|