Apart from the invalid identifier for the column name, that looks OK to me.
user330315
–
user330315
2014-05-07 13:04:32 +00:00
CommentedMay 7, 2014 at 13:04
1
To clarify, 'single quotes' represent a literal string; to quote an identifier, you need "double quotes": "date" timestamp not null default CURRENT_TIMESTAMP (or give your column a non-reserved name).
"date" timestamp not null default CURRENT_TIMESTAMP(or give your column a non-reserved name).