migration

laravel migration
Laravel

How to add a new column to an existing table via Laravel migration

Sometimes we need to add a new column or update an existing one to an existing table in the database after the migration. it’s so easy to do, we will add a new column and rename and change the data type of another one. let’s get started.

Read More