Answers for "how to add new column without data fresh in laravel migration"

PHP
6

add new column in existing table in laravel migration

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on April-30-2020
1

laravel migration add column first

$table->string('column_name')->first()
Posted by: Guest on October-14-2021

Code answers related to "how to add new column without data fresh in laravel migration"

Browse Popular Code Answers by Language