mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
241 B
SQL
9 lines
241 B
SQL
--
|
|
-- New user field for tracking registration time
|
|
-- 2005-12-21
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/user
|
|
-- Timestamp of account registration.
|
|
-- Accounts predating this schema addition may contain NULL.
|
|
ADD user_registration binary(14);
|