web-dev-qa-db-fra.com

Changement de type du champ de la table de migration Laravel

Voici mon fichier 2015_09_14_051851_create_orders_table.php . Et je souhaite changer $table->integer('category_id'); en tant que chaîne avec une nouvelle migration.

<?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');
    }

}
30
naing linhtut

mise à jour: 31 octobre 2018, toujours utilisable sur laravel 5.7 https://laravel.com/docs/5.7/migrations#modifying-columns

Pour apporter des modifications à la base de données existante, vous pouvez modifier le type de colonne à l'aide de change() dans la migration.

C'est ce que tu pourrais faire

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

veuillez noter que vous devez ajouter doctrine/dbal dependency à composer.json pour plus d'informations, vous pouvez le trouver ici http://laravel.com/docs/5.1/migrations#modifying-columns

58
mininoz

La solution standard ne fonctionnait pas pour moi, lors du changement de type de TEXT à LONGTEXT.

Je devais le faire comme ceci:

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

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

Cela pourrait être un problème de doctrine. Plus d'informations ici .

Une autre méthode consiste à utiliser la méthode string () et à définir la valeur sur la longueur maximale du type de texte:

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

Solution 2018, d’autres réponses sont encore valables, mais vous n’avez pas besoin d’utiliser de dépendance:

Vous devez d'abord créer une nouvelle migration:

php artisan make:migration change_appointment_time_column_type

Puis, dans ce fichier de migration up(), essayez:

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

Si vous ne modifiez pas la taille, la taille par défaut sera varchar(191) mais si vous souhaitez modifier la taille du champ:

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

Puis migrez le fichier en:

php artisan migrate

plus d'infos de doc .

2
Blasanka

Pour moi, la solution consistait simplement à remplacer unsigned avec index

C'est le code complet:

    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');
    });
0
Safad Funy