将字段添加到Laravel迁移模式

时间:2015-06-06 11:37:56

标签: migration laravel-5

我已阅读过Laravel的文档和其他论坛,但它对我不起作用。我已经成功迁移了一个表,现在我想添加一个字段,将模式更改为' table'但我得到的只是“没有什么可以迁移的”。

这就是我所做的。

迁移:

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateProductTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('product', function(Blueprint $table)
        {

            $table->text('image');
            $table->integer('stock');
            $table->integer('amount');
            $table->string('color');
            $table->string('dimension');
            $table->integer('ordered');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('product');
    }

}

然后,运行命令php artisan migrate,一切顺利。

然后我决定添加新字段,所以我将控制器更改为:

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateProductTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('product', function(Blueprint $table)
        {
            $table->increments('id');
            $table->string('name');
            $table->text('description');
            $table->text('image'); //new
            $table->int('active'); //new
            $table->integer('stock');
            $table->integer('amount');
            $table->string('color');
            $table->string('dimension');
            $table->integer('ordered');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('product');
    }

}

然后再次运行php artisan migrate,但我只获得Nothing to migrate

我也删除了Blueprint,但也没有效果。 migrate:refreshmigrate:reset完成了这项工作,但这不是我想要的,因为它也会删除数据。

2 个答案:

答案 0 :(得分:3)

我认为这就是你想要做的,按顺序执行这些步骤

php artisan make:migration create_products_table

充实create_products_table.php中的上下方法(注意:迁移文件前面会有一个时间戳,这将决定运行时迁移执行的顺序php artisan migrate

public function up()
{
    Schema::create('product', function(Blueprint $table)
    {
        $table->increments('id');
        $table->string('name');
        $table->text('description');
        $table->integer('stock');
        $table->integer('amount');
        $table->string('color');
        $table->string('dimension');
        $table->integer('ordered');
        $table->timestamps();
    });
}

public function down()
{
    Schema::drop('product');
}

然后创建表格php artisan migrate

现在您已经创建了产品表,但现在您想要更改表并向其添加一些额外的字段。这样做:

php artisan make:migration alter_products_table_add_image_active

现在您有一个单独的迁移来更改表,您不想编辑现有表,这不是迁移的工作方式。它们基本上保留了数据库构建方式的历史记录,因此任何调整都应该放入新的迁移中,所以如果你碰巧回滚,你可以恢复到以前的状态,这是通过使用down方法实现的,这几乎是与down方法相反。

现在在 alter 迁移中充实你的上下方法,alter_products_table_add_image_active.php注意:记住文件会自动加上时间戳)< / p>

public function up()
{
    Schema::table('product', function(Blueprint $table)
    {
        $table->text('image');
        $table->int('active');
    });
}

public function down()
{
    // here you're not dropping the whole table, only removing the newly added columns
    Schema::table('club', function(Blueprint $table){
        $table->dropColumn('image');
        $table->dropColumn('active');
    });
}

这应该让你起步并运行!如果您遇到任何问题,请告诉我。

答案 1 :(得分:0)

当我们想要修改表时,我们可以使用--table in migrate命令,例如菜单表中的示例迁移

php artisan make:migrate [your migrate name] --table=menus