SyntaxFix
Write A Post
Hire A Developer
Questions
I had similar problem. Following solved it:
Change:
recollect_date TIMESTAMP DEFAULT 'CURRENT_TIMESTAMP',
to:
recollect_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
i.e. just remove the quotes around CURRENT_TIMESTAMP.
Hope this helps someone.