Skip to content
Snippets Groups Projects
Commit 36a3ff92 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix create-statement for MySQL >5.6

parent fb0e7926
No related branches found
No related tags found
No related merge requests found
...@@ -72,8 +72,8 @@ database. ...@@ -72,8 +72,8 @@ database.
Here is the initialization SQL script: Here is the initialization SQL script:
CREATE TABLE consent ( CREATE TABLE consent (
consent_date TIMESTAMP NOT NULL, consent_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
usage_date TIMESTAMP NOT NULL, usage_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
hashed_user_id VARCHAR(80) NOT NULL, hashed_user_id VARCHAR(80) NOT NULL,
service_id VARCHAR(255) NOT NULL, service_id VARCHAR(255) NOT NULL,
attribute VARCHAR(80) NOT NULL, attribute VARCHAR(80) NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment