Joywork/sql/ads_stats_fix.sql
2026-05-22 21:21:54 +03:00

7 lines
642 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

ALTER TABLE `ads_stats` CHANGE `views` `views` INT(3) NULL DEFAULT NULL COMMENT 'Кол-во просмотров объявления';
ALTER TABLE `ads_stats` CHANGE `contacts` `contacts` INT(3) NULL DEFAULT NULL COMMENT 'Кол-во просмотров контактов';
ALTER TABLE `ads_stats` CHANGE `favorites` `favorites` INT(3) NULL DEFAULT NULL COMMENT 'Кол-во добавлений в избранное';
ALTER TABLE `ads_stats` CHANGE `calls` `calls` INT(3) NULL DEFAULT NULL COMMENT 'Кол-во звонков с сайта площадки';
ALTER TABLE `ads_stats` DROP PRIMARY KEY;
ALTER TABLE `ads_stats` DROP `id`;