Answers for "add description to column laravel migration"

PHP
7

add column in laravel migration cmnd

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on July-20-2021
-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 "add description to column laravel migration"

Browse Popular Code Answers by Language