Answers for "run specific migration"

PHP
2

how to run a specific migration in laravel

* To run a specific migration

php artisan migrate:refresh --path=/database/migrations/2019_03_23_165757_create_combined_1553343771_users_table.php
  
- Note: it will drop the table and create a new one.
Posted by: Guest on May-12-2021
0

run a specific migration rails

rake db:migrate:up VERSION=20090408054532
Posted by: Guest on May-13-2020
0

run specific migration file django

./manage.py migrate myapp 0005_migration_to_run
Posted by: Guest on September-14-2021

Code answers related to "run specific migration"

Browse Popular Code Answers by Language