- Created XmlFiles control class for handling XML file views and regeneration. - Implemented method to retrieve clients with XML feeds in the factory class. - Added database migration to include google_merchant_account_id in clients table. - Created migrations for products_keyword_planner_terms and products_merchant_sync_log tables. - Added campaign_keywords table migration for managing campaign keyword data. - Developed main view template for displaying XML files and their statuses. - Introduced a debug script for analyzing product URLs and their statuses.
3 lines
121 B
SQL
3 lines
121 B
SQL
ALTER TABLE `clients`
|
|
ADD COLUMN `google_merchant_account_id` varchar(32) DEFAULT NULL AFTER `google_ads_customer_id`;
|