add_share_collect_to_user_day_statistics.sql 297 B

123456789
  1. -- Add share_count and collect_count to user_day_statistics
  2. -- Date: 2026-01-28
  3. USE media_manager;
  4. ALTER TABLE user_day_statistics
  5. ADD COLUMN share_count INT DEFAULT 0 COMMENT 'share_count' AFTER like_count,
  6. ADD COLUMN collect_count INT DEFAULT 0 COMMENT 'collect_count' AFTER share_count;