jdavidbakr / mail-tracker

Package for Laravel to inject tracking code into outgoing emails.
MIT License
575 stars 129 forks source link

Ability to skip migrations #160

Closed louis-l closed 2 years ago

louis-l commented 2 years ago

Hi there,

Thanks for the awesome library. I have been using that on multiple projects and loving it. However, I always have to do 1 extra thing when installing this package, which is to change the migration structure to suit my needs.

For example:

So I thought it would be good that we can ignore the default migrations and use our own.

Usage:

// In AppServiceProvider

public function boot()
{
    MailTracker::ignoreMigrations();
}