Skip to content

Commit

Permalink
Merge pull request #10 from wayofdev/feat/labels
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp authored May 18, 2023
2 parents d464e45 + f1d2d69 commit d4aaa2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 96 deletions.
33 changes: 0 additions & 33 deletions app/database/migrations/2014_10_12_000000_create_users_table.php

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 6 additions & 1 deletion app/deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ function getDefaultEnv(mixed $variable, mixed $default = null)

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

task('artisan:cycle:migrate', function () {
cd('{{release_or_current_path}}');
run('php artisan cycle:migrate');
});

task('deploy', [
'deploy:prepare',
'deploy:vendors',
Expand All @@ -52,7 +57,7 @@ function getDefaultEnv(mixed $variable, mixed $default = null)
'artisan:route:cache',
'artisan:view:cache',
'artisan:event:cache',
'artisan:migrate',
'artisan:cycle:migrate',
'deploy:publish',
]);

Expand Down

0 comments on commit d4aaa2f

Please sign in to comment.