Minor fixes to GDPR files
This commit is contained in:
@ -17,8 +17,8 @@ class m000000_000009_add_gdpr_consent_fields extends Migration
|
||||
{
|
||||
public function safeUp()
|
||||
{
|
||||
$this->addColumn('{{%user}}', 'gdpr_consent', $this->boolean());
|
||||
$this->addColumn('{{%user}}', 'gdpr_consent_date', $this->integer(11));
|
||||
$this->addColumn('{{%user}}', 'gdpr_consent', $this->boolean()->defaultValue(0));
|
||||
$this->addColumn('{{%user}}', 'gdpr_consent_date', $this->integer(11)->null());
|
||||
$this->addColumn('{{%user}}', 'gdpr_deleted', $this->boolean()->defaultValue(0));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user