Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->createTable( |
||
16 | '{{%mfa_recovery_codes}}', |
||
17 | [ |
||
18 | 'id' => $this->primaryKey(), |
||
19 | 'user_id' => $this->integer(11)->notNull(), |
||
20 | 'code' => $this->string(255), |
||
21 | ], |
||
22 | 'CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB' |
||
23 | ); |
||
24 | |||
25 | return true; |
||
26 | } |
||
27 | |||
38 |