openvk/install/sqls/00026-rating-fixed.sql
Ilya Prokopenko e1072738fd
SQL: Fix rating and notifications
Hopefully resolves #587 and some other issues
2022-06-24 18:52:39 +03:00

2 lines
201 B
SQL

ALTER TABLE `profiles` CHANGE `coins` `coins` bigint(20) unsigned NOT NULL DEFAULT '0' AFTER `email`;
ALTER TABLE `profiles` ADD COLUMN `rating` bigint(20) unsigned NOT NULL DEFAULT '0' AFTER `coins`;