Skip to content

Commit

Permalink
chore: add missing migration into service provider
Browse files Browse the repository at this point in the history
  • Loading branch information
daurensky committed Apr 3, 2024
1 parent 0336ddc commit 03bc8cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/FeedbacksServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ public function configurePackage(Package $package): void
->hasConfigFile()
->hasViews()
->hasTranslations()
->hasMigration('create_admin_kit_feedbacks_table')
->hasMigrations([
'create_admin_kit_feedbacks_table',
'replace_name_phone_with_fields_in_admin_kit_feedbacks_table'
])
->hasCommand(FeedbacksCommand::class);
}

Expand Down

0 comments on commit 03bc8cf

Please sign in to comment.