| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function safeUp() |
||
| 20 | { |
||
| 21 | $this->addColumn('{{%user}}', 'gdpr_consent', $this->boolean()->defaultValue(MigrationHelper::getBooleanValue($this->db->driverName, false))); |
||
| 22 | $this->addColumn('{{%user}}', 'gdpr_consent_date', $this->integer(11)->null()); |
||
| 23 | $this->addColumn('{{%user}}', 'gdpr_deleted', $this->boolean()->defaultValue(MigrationHelper::getBooleanValue($this->db->driverName, false))); |
||
| 24 | } |
||
| 25 | |||
| 33 |