Merge "Use pg_result_error, not pg_last_error, as the latter gives false negatives."
[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);