mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
5b5d095121
Now you can hide the year of birth. Also people who were born on January 1, 1970 can specify their date of birth
3 lines
222 B
SQL
3 lines
222 B
SQL
ALTER TABLE `profiles` ADD COLUMN `birthday_privacy` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0;
|
|
UPDATE `profiles` SET `birthday_privacy` = 2 WHERE `birthday` = 0;
|
|
UPDATE `profiles` SET `birthday` = NULL WHERE `birthday` = 0;
|