Change columns from timestamp to datetime

In MariaDB the timestamp has some properties that make it a not a good
fit.
This commit is contained in:
Eike Kettner 2020-06-26 17:07:00 +02:00
parent d79ae6233a
commit 23477e34f9

View File

@ -0,0 +1,5 @@
ALTER TABLE `item`
MODIFY `itemdate` DATETIME NULL;
ALTER TABLE `item`
MODIFY `duedate` DATETIME NULL;