- Introduced a new WordPress theme "BackPRO News" with a lightweight magazine-style design. - Added columns for tracking retry attempts and timestamps for unpublished/generated articles in the articles table. - Included remote service metadata fields in the sites table for better management. - Created log files for image replacements, installer actions, OpenAI article generation, and publishing processes. - Implemented a dashboard template for site management, including permalink settings and theme installation options.
7 lines
327 B
SQL
7 lines
327 B
SQL
-- BackPRO remote service metadata for WordPress management script
|
|
ALTER TABLE sites
|
|
ADD COLUMN remote_service_file VARCHAR(255) NULL AFTER wp_admin_email,
|
|
ADD COLUMN remote_service_token VARCHAR(255) NULL AFTER remote_service_file,
|
|
ADD COLUMN remote_service_installed_at DATETIME NULL AFTER remote_service_token;
|
|
|