1

尝试使用 Yii 迁移删除一个表并创建另一个表。这是代码:

    <?php

class m130919_095159_create_offer_tables extends CDbMigration
{
    public function up()
    {
        $this->getDbConnection()->createCommand()->dropTable('offer');

        $this->createTable('settings', array(
            'id' => 'pk',
            'offer_id' => 'integer NOT NULL',
            'system_id' => 'integer NULL',  
            'site_title' => 'varchar(255) NULL',
            'index_number' => 'integer NULL',  
            'coupon_token' => 'varchar(255) NULL',
            'facebook_app_id' => 'varchar(255) NULL',
            'facebook_app_secret' => 'varchar(255) NULL',
        ));

        $this->createTable('content', array(
            'id' => 'pk',
            'offer_id' => 'integer NOT NULL',
            'created' => 'datetime NOT NULL',
            'modified' => 'datetime NOT NULL',
            'status' => 'integer NOT NULL',
            'title_uz' => 'varchar(255) NULL',
            'title_ru' => 'varchar(255) NULL',
            'description_uz' => 'text NULL',
            'description_ru' => 'text NULL', 
        ));
    }

    public function down()
    {
        echo "m130919_095159_create_offer_tables does not support migration down.\n";
        return false;
    }
}

在我执行命令php yiic.php migrate并得到答案后migrated up successfully。问题是 sql 命令尚未执行。表未删除,未创建其他表。数据库没有变化。查不出原因

4

2 回答 2

0

您以错误的方式使用迁移。正确的方法是你在 up 函数中做的任何事情,只是尝试在 down 函数中做相反的事情。

假设在这里您要删除一个表并在 up 函数中创建两个表,那么您应该在 down 函数中编写代码

为您添加的表创建表代码,并为您创建的两个表创建表代码

首先在console.php中检查你的数据库配置

public function up() {
  $this->dropTable('offer');
  $this->createTable('settings', array(
      'id' => 'pk',
      'offer_id' => 'integer NOT NULL',
      'system_id' => 'integer NULL',  
      'site_title' => 'varchar(255) NULL',
      'index_number' => 'integer NULL',  
      'coupon_token' => 'varchar(255) NULL',
      'facebook_app_id' => 'varchar(255) NULL',
      'facebook_app_secret' => 'varchar(255) NULL',
  ));
   $this->createTable('content', array(
      'id' => 'pk',
      'offer_id' => 'integer NOT NULL',
      'created' => 'datetime NOT NULL',
      'modified' => 'datetime NOT NULL',
      'status' => 'integer NOT NULL',
      'title_uz' => 'varchar(255) NULL',
      'title_ru' => 'varchar(255) NULL',
      'description_uz' => 'text NULL',
      'description_ru' => 'text NULL', 
  ));
}

public function down(){
  $this->createTable('offer', array(
    //attributes for offer table
  ));
  $this->dropTable('settings');
  $this->dropTable('content');
} 
于 2013-09-19T12:11:15.787 回答
0

您必须在 config 目录下的 main.php 和 console.php 上正确配置数据库。如果您使用 MySQL,请取消注释该部分并在 sqlite 下注释 testdrive.db。

于 2014-05-21T21:34:18.697 回答