Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class m180910_142234_craft3_upgrade extends Migration |
||
13 | { |
||
14 | /** |
||
15 | * @inheritdoc |
||
16 | */ |
||
17 | public function safeUp() |
||
18 | { |
||
19 | $this->update('{{%elements}}', [ |
||
20 | 'type' => LoginAccount::class |
||
21 | ], ['type' => 'Social_LoginAccount']); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | public function safeDown() |
||
31 | } |
||
32 | } |
||
33 |