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
210 B
SQL
8 lines
210 B
SQL
--
|
|
-- patch-extenallinks-el_id.sql
|
|
--
|
|
-- T17441. Add externallinks.el_id.
|
|
|
|
ALTER TABLE /*$wgDBprefix*/externallinks
|
|
ADD COLUMN el_id int unsigned NOT NULL AUTO_INCREMENT FIRST,
|
|
ADD PRIMARY KEY (el_id);
|