Skip to content

Commit d4aaa2f

Browse files
authored
Merge pull request #10 from wayofdev/feat/labels
2 parents d464e45 + f1d2d69 commit d4aaa2f

File tree

4 files changed

+6
-96
lines changed

4 files changed

+6
-96
lines changed

app/database/migrations/2014_10_12_000000_create_users_table.php

Lines changed: 0 additions & 33 deletions
This file was deleted.

app/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php

Lines changed: 0 additions & 29 deletions
This file was deleted.

app/database/migrations/2019_08_19_000000_create_failed_jobs_table.php

Lines changed: 0 additions & 33 deletions
This file was deleted.

app/deploy.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ function getDefaultEnv(mixed $variable, mixed $default = null)
4444

4545
before('deploy', 'slack:notify');
4646

47+
task('artisan:cycle:migrate', function () {
48+
cd('{{release_or_current_path}}');
49+
run('php artisan cycle:migrate');
50+
});
51+
4752
task('deploy', [
4853
'deploy:prepare',
4954
'deploy:vendors',
@@ -52,7 +57,7 @@ function getDefaultEnv(mixed $variable, mixed $default = null)
5257
'artisan:route:cache',
5358
'artisan:view:cache',
5459
'artisan:event:cache',
55-
'artisan:migrate',
60+
'artisan:cycle:migrate',
5661
'deploy:publish',
5762
]);
5863

0 commit comments

Comments
 (0)