Answers for "laravel update column type"

PHP
12

update column value laravel

Page::where('id', $id)->update(array('image' => 'asdasd'));
Posted by: Guest on May-07-2020
2

laravel migration update table column type

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
We could also modify a column to be nullable:

Schema::table('users', function ($table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on July-31-2021
0

laravel migration change column type

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}
Posted by: Guest on June-10-2020
0

laravel change column type

composer require doctrine/dbal

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}
Posted by: Guest on August-16-2021

Code answers related to "laravel update column type"

Browse Popular Code Answers by Language