Completed
Pull Request — devel (#18)
by
unknown
61:36 queued 21:23
created

m180621_100600_oauthClientUser::safeUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 18
rs 9.6666
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * m180621_100600_oauthClientUser.php
4
 * PHP version 5.6+
5
 *
6
 * Create applicants
7
 *
8
 * @author Maxime Deschamps <[email protected]>
9
 * @copyright 2010-2018 Ibitux
10
 * @license http://www.ibitux.com/license license
11
 * @version XXX
12
 * @link http://www.ibitux.com
13
 * @package src\migrations
14
 */
15
16
use yii\db\Migration;
17
18
/**
19
 * Class m180621_100600_oauthClientUser
20
 *
21
 * @author Maxime Deschamps <[email protected]>
22
 * @copyright 2010-2018 Ibitux
23
 * @license http://www.ibitux.com/license license
24
 * @version XXX
25
 * @link http://www.ibitux.com
26
 * @package src\migrations
27
 * @since XXX
28
 */
29
class m180621_100600_oauthClientUser extends Migration
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
30
{
31
    /**
32
     * @inheritdoc
33
     */
34
    public function safeUp()
35
    {
36
        $this->createTable('{{%oauthClientUser}}', [
37
            'clientId' => $this->string(255),
38
            'userId' => $this->string(255),
39
            'PRIMARY KEY(clientId, userId)',
40
        ], 'ENGINE=InnoDB DEFAULT CHARSET=utf8');
41
        $this->addForeignKey(
42
            'client_user_client_id_fk',
43
            '{{%oauthClientUser}}',
44
            'clientId',
45
            '{{%oauthClients}}',
46
            'id',
47
            'CASCADE',
48
            'CASCADE'
49
        );
50
        return true;
51
    }
52
53
    /**
54
     * @inheritdoc
55
     */
56
    public function safeDown()
57
    {
58
        $this->dropForeignKey('client_user_client_id_fk', '{{%oauthClientUser}}');
59
        $this->dropTable('{{%oauthClientUser}}');
60
        return true;
61
    }
62
63
}
64