Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function change() |
||
32 | { |
||
33 | $pages = $this->table('pages'); |
||
34 | $pages |
||
35 | ->addColumn('userId', 'integer') |
||
36 | ->addColumn('title', 'text') |
||
37 | ->addColumn('alias', 'string', ['length' => 255]) |
||
38 | ->addColumn('content', 'text') |
||
39 | ->addColumn('keywords', 'text') |
||
40 | ->addColumn('description', 'text') |
||
41 | ->addTimestamps('created', 'updated') |
||
42 | ->addForeignKey('userId', 'users', 'id', [ |
||
43 | 'delete' => 'CASCADE', |
||
44 | 'update' => 'CASCADE' |
||
45 | ]) |
||
46 | ->addIndex(['alias'], ['unique' => true]) |
||
47 | ->create(); |
||
48 | } |
||
49 | } |
||
50 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.