Is there any way to set the default value for a column as an expire date (some hours from CURRENT_TIMESTAMP
)?
I have already tried:
ALTER TABLE `table`
ADD COLUMN `expire` TIMESTAMP NOT NULL DEFAULT TIMESTAMPADD(HOUR, 5, CURRENT_TIMESTAMP);
But didn't work..
You can't implement a complex default value like that in the table definition.
You can do it with a trigger if you want: