Yii Migration, Tables are not created

后端 未结 7 1867
日久生厌
日久生厌 2021-01-03 15:34

I am new to Yii(Still Learning) I am following a book tutorial here I did as it was written in the book created a new migrate

yiic migrate create create_issu         


        
相关标签:
7条回答
  • 2021-01-03 16:09

    I also had the same issue. This got resolved by moving the code to

    public function up() { code here }

    and executing the migration by the following command

    shell> yiic migrate up

    0 讨论(0)
提交回复
热议问题