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

ModulePages   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 18 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class ModulePages 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
        $pages = $this->table('pages');
31
        $pages
32
            ->addColumn('userId', 'integer')
33
            ->addColumn('title', 'text')
34
            ->addColumn('alias', 'string', ['length' => 255])
35
            ->addColumn('content', 'text')
36
            ->addColumn('keywords', 'text')
37
            ->addColumn('description', 'text')
38
            ->addTimestamps('created', 'updated')
39
            ->addForeignKey('userId', 'users', 'id', [
40
                'delete' => 'CASCADE',
41
                'update' => 'CASCADE'
42
            ])
43
            ->addIndex(['alias'], ['unique' => true])
44
            ->create();
45
    }
46
}
47