mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
287 B
SQL
9 lines
287 B
SQL
-- Set up wl_notificationtimestamp with NULL support.
|
|
-- 2005-08-17
|
|
|
|
ALTER TABLE /*$wgDBprefix*/watchlist
|
|
CHANGE wl_notificationtimestamp wl_notificationtimestamp varbinary(14);
|
|
|
|
UPDATE /*$wgDBprefix*/watchlist
|
|
SET wl_notificationtimestamp=NULL
|
|
WHERE wl_notificationtimestamp='0';
|