mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
196 B
SQL
8 lines
196 B
SQL
--
|
|
-- patch-archive-ar_id.sql
|
|
--
|
|
-- Bug 39675. Add archive.ar_id.
|
|
|
|
ALTER TABLE /*$wgDBprefix*/archive
|
|
ADD COLUMN ar_id int unsigned NOT NULL AUTO_INCREMENT FIRST,
|
|
ADD PRIMARY KEY (ar_id);
|