Skip to content

Commit bcd5c33

Browse files
committed
Update test case and package migrations
1 parent f79d8f9 commit bcd5c33

6 files changed

+5
-5
lines changed

src/WorkflowStorageServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ public function configurePackage(Package $package): void
1919
->name('laravel-workflow-storage')
2020
->hasConfigFile()
2121
->hasMigrations([
22-
'create_workflows_table',
23-
'create_workflow_states_table',
24-
'create_workflow_transitions_table',
25-
'create_workflow_state_transitions_table',
22+
'01_create_workflows_table',
23+
'02_create_workflow_states_table',
24+
'03_create_workflow_transitions_table',
25+
'04_create_workflow_state_transitions_table',
2626
])
2727
->hasCommand(WorkflowStorageListCommand::class);
2828
}

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected function setUp(): void
3030
return 'Soap\\WorkflowStorage\\Database\\Factories\\'.class_basename($modelName).'Factory';
3131

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

0 commit comments

Comments
 (0)