Bonjour,
Apres Ajoute Nouvel attribut Type date je veut determine un valeur par défaut (Base de données)
Exemple
date jour = 08/09/2024
valeur par défaut = 08/09/2024 + 365 Days
Merci
Bonjour
à tester sur une version pas en production…
ALTER TABLE `bidon` CHANGE `toto` `toto` DATE NOT NULL DEFAULT '(current_timestamp() + interval 365 day)';
Bonjour,
I create a trigger to automatically set the reminder_date
to a specified number of days after the created_at
date when a new row is inserted. Let’s say you want the reminder to be 366 days after the created_at
date
CREATE TRIGGER set_reminder_date BEFORE INSERT ON llx_propal_extrafields FOR EACH ROW BEGIN SET NEW.datedesignaturedubail = DATE_ADD(NEW.tms, INTERVAL 366 DAY); END;
successfully work
1 « J'aime »