38514 2016-09-04 23:20:28 5485次浏览 0条回复 2 1 0

YII使用migrate命令创建表,只需三步: 1、在yii批处理文件所在目录下执行 $ yii migrate/create init_services_table 2、执行完成后,会在console/migrations目录下生成名为*init_services_table.php的文件 修改文件

<?php

use yii\db\Migration;

class m160904_145401_init_services_table extends Migration
{
    public function up()
    {
		$this -> createTable(
			'service',
			[
				'id' => 'pk',
				'name' => 'string unique',
				'hourly_rate' => 'integer',
			]
		);
    }

    public function down()
    {
        #echo "m160904_145401_init_services_table cannot be reverted.\n";
        #return false;
		$this -> dropTable('service');
    }

    /*
    // Use safeUp/safeDown to run migration code within a transaction
    public function safeUp()
    {
    }

    public function safeDown()
    {
    }
    */
}

3、执行migration命令,会在对应数据库中创建该表。 yii migrate

觉得很赞
    没有找到数据。
您需要登录后才可以回复。登录 | 立即注册