I need to rollback migration on my ruby on rails project
I accidently deleted my migration file, [ID:20180214033313].
my migration status
I tried doing bundle exec rake:db rollback
but it didn't help and I also tried bundle exec rake db:migrate:down VERSION=20180214033313
but it gave me the error below,
ActiveRecord::UnknownMigrationVersionError:
No migration with version number 20180214033313>
Any suggestions on how can I fix this?