From 1d0168379a3afea78e68dba0a43a19604d58d259 Mon Sep 17 00:00:00 2001 From: "E.Alamo" Date: Sun, 27 May 2018 06:49:51 +0200 Subject: [PATCH] Added GDPR columns --- tests/_data/schema.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/_data/schema.sql b/tests/_data/schema.sql index a700996..eb32a92 100644 --- a/tests/_data/schema.sql +++ b/tests/_data/schema.sql @@ -73,6 +73,9 @@ CREATE TABLE `user` ( `auth_tf_enabled` tinyint(1) DEFAULT '0', `flags` int(11) NOT NULL DEFAULT '0', `last_login_at` int(11) DEFAULT NULL, + `gdpr_consent` tinyint(1) NULL DEFAULT '0', + `gdpr_consent_date` int(11) NULL, + `gdpr_deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `user_unique_email` (`email`),