1 | <?php |
||
5 | class Pages 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 | $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.