Skip to content

Commit dfd476a

Browse files
committed
Prepare for production ...
1 parent 064ace3 commit dfd476a

10 files changed

+5
-107
lines changed

src/WorkflowStorageServiceProvider.php

+4-4
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+
'wf1_create_workflows_table',
23+
'wf2_create_workflow_states_table',
24+
'wf3_create_workflow_transitions_table',
25+
'wf4_create_workflow_state_transitions_table',
2626
])
2727
->hasCommand(WorkflowStorageListCommand::class);
2828
}

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function setUp(): void
3131

3232
});
3333

34-
//$this->loadMigrationsFrom(__DIR__.'/../database/migrations'); // load the package migrations
34+
$this->loadMigrationsFrom(__DIR__.'/../database/migrations'); // load the package migrations
3535
}
3636

3737
protected function getPackageProviders($app)

workbench/database/migrations/00_create_workflows_table.php

-27
This file was deleted.

workbench/database/migrations/01_create_workflow_states_table.php

-26
This file was deleted.

workbench/database/migrations/02_create_workflow_transitions_table.php

-25
This file was deleted.

workbench/database/migrations/03_create_workflow_state_transitions_table.php

-24
This file was deleted.

0 commit comments

Comments
 (0)