Laravel migrations change a column type from varchar to longText

LaravelLaravel Migrations

Laravel Problem Overview


I need to change with a migration column type of $table->string('text'); to a text type, I have tried to do that in a few ways, but none of them worked. Is it possible to do it in one migration? I could I guess drop the column and then create it again with a new type, but I wonder if it is possible to do it in one migration?

Laravel Solutions


Solution 1 - Laravel

You can create a new migration and change just one column type:

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}

You need to install doctrine/dbal to make this work

composer require doctrine/dbal

Works with Laravel 5.0+. It does not work with Laravel 4.2.

Solution 2 - Laravel

It's possible to do with a TABLE migration.

As mentioned in other posts, be sure to run composer require doctrine/dbal from your project root.

These are set up with:

php artisan make:migration alter_table_[yourtablenamehere]_change_[somecolumnname] --table=[yourtablenamehere]

from your project root.

From the Documentation:

https://laravel.com/docs/master/migrations#modifying-columns

class AlterTableSomething extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('table', function (Blueprint $table) {
            $table->text('column_name')->change();
        });
    }
}

Solution 3 - Laravel

According to Laravel Doc

You can do it like

Schema::table('yourTable', function (Blueprint $table) {
    $table->text('text')->change();
});

> be sure to add the doctrine/dbal dependency to your composer.json file

Solution 4 - Laravel

If you get following error using change()

> Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL80Platform may not support it.

this means that exists some column (not necessarily changed one) in your table which has enum type. So instead using change() you can use following function:

public function changeColumnType($table, $column, $newColumnType) {                
    DB::statement("ALTER TABLE $table CHANGE $column $column $newColumnType");
} 

And use it like that: $this->changeColumnType('sometable','text','TEXT');

Solution 5 - Laravel

Following worked for me.

Definitely you need to install doctrine/dbal to make this work, using following command in terminal.

composer require doctrine/dbal

Then create migration as mentioned here- https://laravel.com/docs/master/migrations#generating-migrations

open your migration file and write down below.

Schema::table('yourTable', function (Blueprint $table) {
    $table->string('column_name','4294967295')->change();
});

As, longText have maximum of 4,294,967,295 character limit, Laravel will automatically change column_name to longText data type.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLudwigView Question on Stackoverflow
Solution 1 - LaravelAlexey MezeninView Answer on Stackoverflow
Solution 2 - LaravelJustin Origin BroadbandView Answer on Stackoverflow
Solution 3 - LaravelzorxView Answer on Stackoverflow
Solution 4 - LaravelKamil KiełczewskiView Answer on Stackoverflow
Solution 5 - LaravelVatsal ShahView Answer on Stackoverflow