Skip to content

feat: add publish feature for podcasts

Ola Hneini requested to merge feat/publish-podcasts into develop

closes #128 (closed)

SET AUTOCOMMIT = 0;
START TRANSACTION;

ALTER TABLE cp_podcasts ADD COLUMN published_at DATETIME DEFAULT NULL AFTER updated_by;
UPDATE cp_podcasts SET published_at = created_at;

COMMIT;
Edited by Yassine Doghri

Merge request reports