Push   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 41
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 15 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
0 ignored issues
show
Bug introduced by
The type Phinx\Migration\AbstractMigration was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
4
5
class Push extends AbstractMigration
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
     * @throws \InvalidArgumentException
29
     * @throws \RuntimeException
30
     */
31
    public function change()
32
    {
33
        $table = $this->table('push');
34
        $table
35
            ->addColumn('userId', 'integer')
36
            ->addColumn('authToken', 'string', ['length' => 255])
37
            ->addColumn('contentEncoding', 'string', ['length' => 255])
38
            ->addColumn('endpoint', 'text')
39
            ->addColumn('publicKey', 'text')
40
            ->addTimestamps('created', 'updated')
41
            ->addForeignKey('userId', 'users', 'id', [
42
                'delete' => 'CASCADE',
43
                'update' => 'CASCADE'
44
            ])
45
            ->create();
46
    }
47
}
48