1 | <?php |
||
5 | class ViewCreationMigration extends AbstractMigration |
||
6 | { |
||
7 | /** |
||
8 | * Change Method. |
||
9 | * |
||
10 | * More information on this method is available here: |
||
11 | * http://docs.phinx.org/en/latest/migrations.html#the-change-method |
||
12 | * |
||
13 | * Uncomment this method if you would like to use it. |
||
14 | * |
||
15 | public function change() |
||
16 | { |
||
17 | } |
||
18 | */ |
||
19 | |||
20 | /** |
||
21 | * Migrate Up. |
||
22 | */ |
||
23 | public function up() |
||
32 | |||
33 | /** |
||
34 | * Migrate Down. |
||
35 | */ |
||
36 | public function down() |
||
40 | } |