“Как освежить миграцию в Ларавеле, не теряя данных” Ответ

Как освежить миграцию в Ларавеле, не теряя данных

"Since you already have data in your tables then instead of rolling back your migrations (which will cause existing data losses) 
you can create new migration files to update your tables. Suppose you have a table users with columns name, email, password. 
You stored data in that table. Then you realized that you also do need to add a new column named mobile_no to your users table. 
To do this you need to create a new migration file. Command will be:"

php artisan make:migration add_mobile_no_columns_to_users_table --table=users
  
  
"This way a new migration file will be created. Set your column details there, 
run the migrations using php artisan migrate and that's all. You'll have this new column in your users table without losing previously 
stored data."
Selfish Skipper

Как освежить миграцию в Ларавеле, не теряя данных

php artisan make:migration add_mobile_no_columns_to_users_table --table=users
Selfish Skipper

Ответы похожие на “Как освежить миграцию в Ларавеле, не теряя данных”

Вопросы похожие на “Как освежить миграцию в Ларавеле, не теряя данных”

Больше похожих ответов на “Как освежить миграцию в Ларавеле, не теряя данных” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования