ChatGPT解决这个技术问题 Extra ChatGPT

Safely remove migration In Laravel

In Laravel, there appears to be a command for creating a migration, but not removing.

Create migration command:

php artisan migrate:make create_users_table

If I want to delete the migration, can I just safely delete the corresponding migrations file within the database/migrations folder?

Migrations file:

2013_05_31_220658_create_users_table

c
cespon

I accidentally created a migration with a bad name (command: php artisan migrate:make). I did not run (php artisan migrate) the migration, so I decided to remove it. My steps:

Manually delete the migration file under app/database/migrations/my_migration_file_name.php Reset the composer autoload files: composer dump-autoload Relax

If you did run the migration (php artisan migrate), you may do this:

a) Run migrate:rollback - it is the right way to undo the last migration (Thnx @Jakobud)

b) If migrate:rollback does not work, do it manually (I remember bugs with migrate:rollback in previous versions):

Manually delete the migration file under app/database/migrations/my_migration_file_name.php Reset the composer autoload files: composer dump-autoload Modify your database: Remove the last entry from the migrations table


Thanks. The gottcha for me after deleting a migration was forgetting to run composer dump-autoload
If you have run the migration, the "proper" way is to run migrate:rollback to rollback the migration, then delete the migration file and dump autoload. No need to hack the db or the migrations table.
great answer for steps after (php artisan migrate) (Y)
My God and I tormented myself when I was wrong. Thank you.
Great answer! I know that your answer is for an older version but I believe that running composer dump-autoload is no longer needed from Laravel 6.x. Might be worth noting for future reference?
J
Jason Lewis

If the migration has been run (read: migrated) then you should roll back your migration to clear the history from your database table. Once you're rolled back you should be able to safely delete your migration file and then proceed with migrating again.


He hasn't run the migration, though. You can't roll back what you didn't actually do, can you?
No you can't, but if that's the case then there should be no history stored in the migrations database which means you can safely delete the file.
L
LastM4N

DO NOT run php artisan migrate:fresh that's gonna drop all the tables


I love how this is not an answer to the question, but yet useful and save lives.
S
Stephane

You likely need to delete the entry from the migrations table too.


Delete migration and the row in the migrations table. This looks like the most straightforward solution to me.
k
k0pernikus

DON'T run this on production but this should do the job, if you are in development and the desired outcome is to start all over:

# php artisan migrate:fresh

In production, that maybe not the desired thing, so you should be adverted. (The migrate:fresh command will drop all tables from the database and then execute the migrate command).


3 upvotes? the OP asked for a way to delete a migration, not destroy and refresh the entire database. This is awful advice, don't do this unless you know what you're doing.
kindly read about the difference between migrate:refresh and migrate:fresh you seen to be describing the first, the later in way does partial reset avoiding the manual work!
migrate:fresh immediately drops ALL tables and re-runs migrations as if running for the first time. There is nothing partial about it.. any data will be gone. It will fix the problem but it's not a valid answer to the question.
This command delete All tables and re-runs migrations rather than remove migration file :|
please read before you run this command
J
JR Tan

I accidentally created two times create_users_table. It overrided some classes and turned rollback into ErrorException.

What you need to do is find autoload_classmap.php in vendor/composer folder and look for the specific line of code such as

'CreateUsersTable' => $baseDir . '/app/database/migrations/2013_07_04_014051_create_users_table.php',

and edit path. Then your rollback should be fine.


If you - like I did - just went along and renamed a migration file this is the answer you are looking for! Thanks.
You could also just simply do "composer dumpautoload"
U
Udhav Sarvaiya

I agree with the current answers, I just wanna add little more information.

A new feature has been added to Laravel 5.3 and above version that will allow you to back out a single migration:

php artisan migrate:rollback --step=1

after, Manually delete the migration file under database/migrations/my_migration_file_name.php

This is a great feature for when you run a migration

In this way, you can safely remove the migration in laravel only in 2 step


D
DAVID AJAYI

I will rather do it manually

Delete the model first (if you don't) need the model any longer Delete the migration from ...database/migrations folder If you have already migrated i.e if you have already run php artisan migrate, log into your phpmyadmin or SQL(whichever the case is) and in your database, delete the table created by the migration Still within your database, in the migrations folder, locate the row with that migration file name and delete the row.

Works for me, hope it helps!


B
Bhargav Rao

This works for me:

I deleted all tables in my database, mainly the migrations table. php artisan migrate:refresh

in laravel 5.5.43