Answers for "change column to foreign laravel migration"

PHP
3

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
-1

how to change the colum type in migration laravel

public function changeColumnType($table, $column, $newColumnType) {                
    DB::statement("ALTER TABLE $table CHANGE $column $column $newColumnType");
}
Posted by: Guest on January-12-2022

Code answers related to "change column to foreign laravel migration"

Browse Popular Code Answers by Language