You can set a path when running migrations (you might need to use --realpath instead of --path)
php artisan migrate --path /var/www/foo/migrations
Hello. I've got an e-commerce app which will be basically divided in 2 sections/projects:
Both projects will obviously query and modify the same database.
Here's my question:
Can I have a separate project just in charge of database migrations? if so, how could I reference those migrations for each of the projects (repositories)?
I don't want to have these functionality together (store itself and the admin part of it), that's why I want to separate them.
I don't think there's gonna be much code replication, I mean, I know there's gonna be some, at least for the login part but other than that (and a few other cases) not many.
Is there a way to accomplish this?
Thanks.
Please or to participate in this conversation.