Yii Migration,不创建表

时间:2013-07-03 09:15:22

标签: php yii

我是Yii的新手(Still Learning)我正在学习一本书 在这里我按照书中所写的创建了一个新的迁移

yiic migrate create create_issue_user_and_assignment_tables

并在安全方面我写了这个查询

$this->createTable('tbl_issue', array(
'id' => 'pk',
'name' => 'string NOT NULL',
'description' => 'text',
'project_id' => 'int(11) DEFAULT NULL',
'type_id' => 'int(11) DEFAULT NULL',
'status_id' => 'int(11) DEFAULT NULL',
'owner_id' => 'int(11) DEFAULT NULL',
'requester_id' => 'int(11) DEFAULT NULL',
'create_time' => 'datetime DEFAULT NULL',
'create_user_id' => 'int(11) DEFAULT NULL',
'update_time' => 'datetime DEFAULT NULL',
'update_user_id' => 'int(11) DEFAULT NULL',
), 'ENGINE=InnoDB');
//create the user table
$this->createTable('tbl_user', array(
'id' => 'pk',
'username' => 'string NOT NULL',
'email' => 'string NOT NULL',
'password' => 'string NOT NULL',
'last_login_time' => 'datetime DEFAULT NULL',
'create_time' => 'datetime DEFAULT NULL',
'create_user_id' => 'int(11) DEFAULT NULL',
'update_time' => 'datetime DEFAULT NULL',
'update_user_id' => 'int(11) DEFAULT NULL',
), 'ENGINE=InnoDB');

,这在safeDown()

$this->dropTable('tbl_issue');
$this->dropTable('tbl_user');

然后运行它并获得以下消息

D:\wamp\www\yiisite\protected>yiic migrate
PHP Deprecated:  Directive 'register_globals' is deprecated in PHP 5.3 and great
er in Unknown on line 0

Deprecated: Directive 'register_globals' is deprecated in PHP 5.3 and greater in
 Unknown on line 0

Yii Migration Tool v1.0 (based on Yii v1.1.13)

Total 1 new migration to be applied:
    m130703_085302_create_issue_user_and_assignment_tables

Apply the above migration? (yes|no) [no]:yes
*** applying m130703_085302_create_issue_user_and_assignment_tables
*** applied m130703_085302_create_issue_user_and_assignment_tables (time: 0.042s
)


Migrated up successfully.

现在的问题是数据库中没有创建表,因为msg不推荐使用register_globals但是我不知道该怎么做,连接参数是正确的,并且在表tbl_migration中插入了一条记录

m130703_085302_create_issue_user_and_assignment_ta...   1372842220

但没有创建新表。

7 个答案:

答案 0 :(得分:3)

创建表通常不需要事务

<?php
class m130630_124600_some_description_name extends CDbMigration
{
    public function up(){
        //upcode example create the session table
        $this->createTable('session',[
             'id' => "varchar(40) NOT NULL",
             'expire' => "int(12)",
             'data' => "blob",
        ]);
        $this->addPrimaryKey('idx','session','id');
    }
    public function down(){
       // downcode (undo the up code) example: drop session table
       $this->dropTable('session');
    }
}

如果需要交易

遵循 safeUp 的评论:

  

此方法包含应用此时要执行的逻辑   移民。此方法与 up()的不同之处在于DB逻辑   这里实现的将包含在DB事务中。儿童   如果DB逻辑,类可以实现此方法而不是 up()       需要在交易中。

答案 1 :(得分:1)

检查config / console.php文件 更改dbname,用户名和密码。 这是yiic命令使用的文件,而不是config / main.php 它现在应该工作

答案 2 :(得分:1)

可能你犯了错误,我做了什么。 yiic是一个控制台命令。检查项目的config文件夹中的console.php的db属性。检查你的配置控制台。

它可能指向testdrive.db SQLite默认的一个&amp;该表创建了他们的。

至少这是我的问题。

此致,Ajeet

答案 3 :(得分:0)

我只是干了你运行代码就可以创建表格,所以我不得不假设你的调用有问题。只有立即突出的是你运行bash脚本而不是bat脚本。

yiic 是一个bash脚本。在Windows上,建议运行 yiic.bat yiic.php

你能从命令行运行php吗?如果是这样的话:

  • 从tbl_migrations
  • 删除迁移
  • 以“C:\ path \ to \ php.exe yiic.php migrate up”运行迁移

答案 4 :(得分:0)

确保您没有通过MySQL手动创建tbl_usertbl_issue表。如果它们已经存在,请删除它们,然后再次运行迁移。

还要检查以确保main/config.phpmain/console.php中的数据库连接字符串已设置为正确引用迁移应使用的数据库。

要确认它是否有效,当您的迁移实际成功时,您将获得与以下内容非常相似的结果,列出所采取的每个SQL操作。如果您没有在列表中看到任何操作,则表明它无法正常运行。

D:\xampp\htdocs\yii\trackstar\protected>yiic migrate

Yii Migration Tool v1.0 (based on Yii v1.1.14)

Total 1 new migration to be applied:
    m140406_014347_create_user_issue_assignment_tables

Apply the above migration? (yes|no) [no]:y
*** applying m140406_014347_create_user_issue_assignment_tables
    > create table tbl_issue ... done (time: 0.351s)
    > create table tbl_user ... done (time: 0.405s)
    > create table tbl_project_user_assignment ... done (time: 0.366s)
    > add foreign key fk_issue_project: tbl_issue (project_id) references tbl_pr
oject (id) ... done (time: 0.923s)
    > add foreign key fk_issue_owner: tbl_issue (owner_id) references tbl_user (
id) ... done (time: 1.066s)
    > add foreign key fk_issue_requester: tbl_issue (requester_id) references tb
l_user (id) ... done (time: 1.829s)
    > add foreign key fk_project_user: tbl_project_user_assignment (project_id)
references tbl_project (id) ... done (time: 1.416s)
    > add foreign key fk_user_project: tbl_project_user_assignment (user_id) ref
erences tbl_user (id) ... done (time: 1.032s)
*** applied m140406_014347_create_user_issue_assignment_tables (time: 7.446s)


Migrated up successfully.

最后,MySQL中的表的创建将在它们运行后隐式提交,因此在safeDown()safeUp()方法中运行代码,这将使代码作为MySQL事务运行,而不是特别有用。为简单起见,我会将每个安全方法中的代码移动到相应的“非安全”方法。

答案 5 :(得分:0)

可能你犯了错误,我做了什么。 yiic是一个控制台命令。检查项目的config文件夹中的console.php的db属性。

它可能指向testdrive.db SQLite默认的一个&amp;该表创建了他们的。

至少这是我的问题。

此致 Ajeet

答案 6 :(得分:0)

我也有同样的问题。通过将代码移动到

来解决这个问题

公共功能向上() {   代码在这里 }

并通过以下命令执行迁移

壳&GT; yiic向上迁移