Completed
Push — master ( 6daf10...1140ad )
by Anton
13s
created

ModuleAcl   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 64
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 64
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
B change() 0 40 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class ModuleAcl extends AbstractMigration
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...
6
{
7
    /**
8
     * Change Method.
9
     *
10
     * Write your reversible migrations using this method.
11
     *
12
     * More information on writing migrations is available here:
13
     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
14
     *
15
     * The following commands can be used in this method and Phinx will
16
     * automatically reverse them when rolling back:
17
     *
18
     *    createTable
19
     *    renameTable
20
     *    addColumn
21
     *    renameColumn
22
     *    addIndex
23
     *    addForeignKey
24
     *
25
     * Remember to call "create()" or "update()" and NOT "save()" when working
26
     * with the Table class.
27
     */
28
    public function change()
29
    {
30
        $roles = $this->table('acl_roles', ['primary_key' => ['id', 'code']]);
31
        $roles
32
            ->addColumn('name', 'string', ['length'=>255])
33
            ->addColumn('created', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'update' => ''])
34
            ->addIndex(['name'], ['unique' => true])
35
            ->create();
36
37
        $privileges = $this->table(
38
            'acl_privileges',
39
            [
40
                'id' => false,
41
                'primary_key' => ['roleId', 'module', 'privilege']
42
            ]
43
        );
44
        $privileges
45
            ->addColumn('roleId', 'integer')
46
            ->addColumn('module', 'string', ['length'=>32])
47
            ->addColumn('privilege', 'string', ['length'=>32])
48
            ->addForeignKey('roleId', $roles, 'id', [
49
                'delete' => 'CASCADE',
50
                'update' => 'CASCADE'
51
            ])
52
            ->create();
53
54
        $usersRoles = $this->table('acl_users_roles', ['id' => false, 'primary_key' => ['userId', 'roleId']]);
55
        $usersRoles
56
            ->addColumn('userId', 'integer')
57
            ->addColumn('roleId', 'integer')
58
            ->addForeignKey('userId', 'users', 'id', [
59
                'delete' => 'CASCADE',
60
                'update' => 'CASCADE'
61
            ])
62
            ->addForeignKey('roleId', $roles, 'id', [
63
                'delete' => 'CASCADE',
64
                'update' => 'CASCADE'
65
            ])
66
            ->create();
67
    }
68
}
69