We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94147f8 commit 1e7c981Copy full SHA for 1e7c981
src/ShopifyApp/ShopifyAppProvider.php
@@ -35,13 +35,15 @@ public function boot()
35
], 'config');
36
37
// Database migrations
38
+ // @codeCoverageIgnoreStart
39
if (Config::get('shopify-app.manual_migrations')) {
40
$this->publishes([
41
__DIR__.'/resources/database/migrations' => "{$this->app->databasePath()}/migrations",
42
], 'migrations');
43
} else {
44
$this->loadMigrationsFrom(__DIR__.'/resources/database/migrations');
45
}
46
+ // @codeCoverageIgnoreEnd
47
48
// Job publish
49
0 commit comments