2016-05-10 44 views
0

如果可以設置Phinx遷移來創建具有向上/向下方法的遷移類而不是默認選項的更改,您能否告訴我? 謝謝。如何使用向上/向下方法設置Phinx遷移以創建遷移類

+1

您可以創建自己的[遷移模板(http://docs.phinx.org/en /latest/commands.html#the-create-command)並從命令行提供它,但我不知道是否有任何'sh phinx創建遷移 - 上下文'的東西。 –

+0

是的,我擁有它。但這不完全是我想要的。謝謝。 –

+0

如果有人不知道,模板可以通過模板文件中的$ className設置類名稱。還可以將模板另存爲txt文件以解決此問題。 –

回答

1

創建您own migration template

<?php 

use $useClassName; 

class $className extends $baseClassName 
{ 
    public function up() { 

    } 

    public function down() { 

    } 
} 

然後在配置應用它:

paths: 
    migrations: 
     - application/module1/migrations 
templates: 
    file: <your-custom-tmplate.path>