Laravel迁移表字段的类型更改

问题描述 投票:37回答:5

以下是我的文件2015_09_14_051851_create_orders_table.php。我希望将$table->integer('category_id');更改为新迁移的字符串。

<?php

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

class CreateOrdersTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('orders', function(Blueprint $table)
        {
            $table->increments('id');
            $table->string('num');
            $table->integer('user_id');

            $table->text('store_name');
            $table->integer('store_name_publication');

            $table->string('postal_code', 255);
            $table->string('phone_number', 255);

            $table->text('title');
            $table->text('description');

            $table->string('list_image_filename1', 255);
            $table->string('list_image_filename2', 255)->nullable();
            $table->string('list_image_filename3', 255)->nullable();
            $table->string('list_image_filename4', 255)->nullable();
            $table->string('list_image_filename5', 255)->nullable();

            $table->integer('term');

            $table->datetime('state0_at')->nullable();
            $table->datetime('state1_at')->nullable();
            $table->datetime('state2_at')->nullable();
            $table->datetime('state3_at')->nullable();
            $table->datetime('state4_at')->nullable();
            $table->datetime('state5_at')->nullable();
            $table->datetime('state6_at')->nullable();
            $table->datetime('state7_at')->nullable();
            $table->datetime('state8_at')->nullable();
            $table->datetime('state9_at')->nullable();
            $table->datetime('state10_at')->nullable();

            $table->integer('category_id');
            $table->integer('target_customer_sex');
            $table->integer('target_customer_age');

            $table->integer('payment_order');
            $table->integer('num_comment');
            $table->integer('num_view');
            $table->string('num_pop');

            $table->integer('money');
            $table->integer('point');

            $table->datetime('closed_at');
            $table->timestamps();
            $table->softDeletes();
        });
    }

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

}
php laravel migration
5个回答
72
投票

更新:2018年10月31日,仍可在laravel 5.7 https://laravel.com/docs/5.7/migrations#modifying-columns上使用

要对现有数据库进行一些更改,可以在迁移中使用change()修改列类型。

这就是你能做的

Schema::table('orders', function ($table) {
    $table->string('category_id')->change();
});

请注意你需要添加doctrine / dbal依赖到composer.json了解更多信息,你可以在这里找到它http://laravel.com/docs/5.1/migrations#modifying-columns


35
投票

当将类型从TEXT更改为LONGTEXT时,standard solution对我不起作用。

我不得不这样:

public function up()
{
    DB::statement('ALTER TABLE mytable MODIFY mycolumn  LONGTEXT;');
}

public function down()
{
    DB::statement('ALTER TABLE mytable MODIFY mycolumn TEXT;');
}

这可能是一个学说问题。更多信息here

另一种方法是使用string()方法,并将值设置为文本类型max length:

    Schema::table('mytable', function ($table) {
        // Will set the type to LONGTEXT.
        $table->string('mycolumn', 4294967295)->change();
    });

6
投票

2018解决方案,其他答案仍然有效,但您不需要使用任何依赖:

首先,您必须创建一个新的迁移:

php artisan make:migration change_appointment_time_column_type

然后在该迁移文件up()中,尝试:

    Schema::table('appointments', function ($table) {
        $table->string('time')->change();
    });

如果你不改变大小默认将是varchar(191)但是如果你想改变字段的大小:

    Schema::table('appointments', function ($table) {
        $table->string('time', 40)->change();
    });

然后通过以下方式迁移文件

php artisan migrate

more info from doc


3
投票

所有其他答案都是正确但在你跑步之前

php artisan migrate

确保先运行此代码

composer require doctrine/dbal

避免这个错误

RuntimeException:更改表“items”的列需要Doctrine DBAL;安装“doctrine / dbal”。


0
投票

对我来说,解决方案只是用索引替换unsigned

这是完整的代码:

    Schema::create('champions_overview',function (Blueprint $table){
        $table->engine = 'InnoDB';
        $table->increments('id');
        $table->integer('cid')->index();
        $table->longText('name');
    });


    Schema::create('champions_stats',function (Blueprint $table){
        $table->engine = 'InnoDB';
        $table->increments('id');
        $table->integer('championd_id')->index();
        $table->foreign('championd_id', 'ch_id')->references('cid')->on('champions_overview');
    });
© www.soinside.com 2019 - 2024. All rights reserved.