Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / maintenance / archives / patch-watchlist-wl_id.sql
1 -- Primary key in watchlist
2
3 ALTER TABLE /*$wgDBprefix*/watchlist
4 ADD COLUMN wl_id int unsigned NOT NULL AUTO_INCREMENT FIRST,
5 ADD PRIMARY KEY (wl_id);