Completed
Push — master ( 96700c...8d30b0 )
by Anton
10s
created

ModuleMedia::change()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 15
nc 1
nop 0
1
<?php
2
/**
3
 * @copyright Bluz PHP Team
4
 * @link https://github.com/bluzphp/skeleton
5
 */
6
7
use Phinx\Migration\AbstractMigration;
8
9
/**
10
 * CreateMediaTable
11
 */
12
class ModuleMedia 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...
13
{
14
    /**
15
     * Change Method.
16
     *
17
     * Write your reversible migrations using this method.
18
     *
19
     * More information on writing migrations is available here:
20
     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
21
     *
22
     * The following commands can be used in this method and Phinx will
23
     * automatically reverse them when rolling back:
24
     *
25
     *    createTable
26
     *    renameTable
27
     *    addColumn
28
     *    renameColumn
29
     *    addIndex
30
     *    addForeignKey
31
     *
32
     * Remember to call "create()" or "update()" and NOT "save()" when working
33
     * with the Table class.
34
     */
35
    public function change()
36
    {
37
        $table = $this->table('media');
38
        $table
39
            ->addColumn('userId', 'integer')
40
            ->addColumn('module', 'string', ['length' => 255, 'default' => 'users'])
41
            ->addColumn('title', 'text')
42
            ->addColumn('type', 'string', ['length' => 255])
43
            ->addColumn('file', 'string', ['length' => 255])
44
            ->addColumn('thumb', 'string', ['length' => 255])
45
            ->addColumn('size', 'integer')
46
            ->addTimestamps('created', 'updated')
47
            ->addForeignKey('userId', 'users', 'id', [
48
                'delete' => 'CASCADE',
49
                'update' => 'CASCADE'
50
            ])
51
            ->create();
52
    }
53
}
54