From 1a08ce0250221078cc22a0b3a86e1cd6cbf2a88d Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 27 May 2018 03:15:27 +0200 Subject: [PATCH] Add gdpr_deleted field --- src/User/Migration/m000000_000007_add_gdpr_consent_fields.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/User/Migration/m000000_000007_add_gdpr_consent_fields.php b/src/User/Migration/m000000_000007_add_gdpr_consent_fields.php index fd0a1d1..573f316 100644 --- a/src/User/Migration/m000000_000007_add_gdpr_consent_fields.php +++ b/src/User/Migration/m000000_000007_add_gdpr_consent_fields.php @@ -19,11 +19,13 @@ class m000000_000007_add_gdpr_consent_fields extends Migration { $this->addColumn('{{%user}}', 'gdpr_consent', $this->boolean()); $this->addColumn('{{%user}}', 'gdpr_consent_date', $this->integer(11)); + $this->addColumn('{{%user}}', 'gdpr_deleted', $this->boolean()->defaultValue(0)); } public function safeDown() { $this->dropColumn('{{%user}}', 'gdpr_consent'); $this->dropColumn('{{%user}}', 'gdpr_consent_date'); + $this->dropColumn('{{%user}}', 'gdpr_deleted'); } }