Skip to content

Develop #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test case and package migrations
  • Loading branch information
kpscyber committed Sep 12, 2024
commit bcd5c33ee314a9c86c3f106ffde93bd313fe03bb
8 changes: 4 additions & 4 deletions src/WorkflowStorageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public function configurePackage(Package $package): void
->name('laravel-workflow-storage')
->hasConfigFile()
->hasMigrations([
'create_workflows_table',
'create_workflow_states_table',
'create_workflow_transitions_table',
'create_workflow_state_transitions_table',
'01_create_workflows_table',
'02_create_workflow_states_table',
'03_create_workflow_transitions_table',
'04_create_workflow_state_transitions_table',
])
->hasCommand(WorkflowStorageListCommand::class);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function setUp(): void
return 'Soap\\WorkflowStorage\\Database\\Factories\\'.class_basename($modelName).'Factory';

});
$this->artisan('vendor:publish --tag="workflow-storage-migrations"');
//$this->artisan('vendor:publish --tag="workflow-storage-migrations"');
//$this->loadMigrationsFrom(__DIR__.'/../database/migrations'); // load the package migrations
}

Expand Down
Loading