Added GPDR migration

This commit is contained in:
Administrator
2018-05-27 00:23:37 +02:00
parent 673e2fe729
commit 328acd2e22

View File

@ -0,0 +1,27 @@
<?php
/*
* This file is part of the 2amigos/yii2-usuario project.
*
* (c) 2amigOS! <http://2amigos.us/>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Da\User\Migration;
use yii\db\Migration;
class m000000_000007_add_gdpr_consent_field extends Migration
{
public function safeUp()
{
$this->addColumn('{{%user}}', 'gdpr_consent', $this->boolean());
}
public function safeDown()
{
$this->dropColumn('{{%user}}', 'gdpr_consent');
}
}