From 00dc529ae425a9fe6bcba6398dbe638de5961f42 Mon Sep 17 00:00:00 2001 From: jon Date: Wed, 3 Jul 2024 12:53:17 +0100 Subject: [PATCH 1/2] update readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index c3ecd51..be3cebe 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,13 @@ You can publish the config file with: php artisan vendor:publish --tag="laravel-flows-config" ``` +You can publish migrations + +```bash +php artisan vendor:publish --tag=":laravel-flows-migrations" +php artisan migrate +``` + ## Testing ```bash From 6044cb719cf2623ea9e93bdacb83341592aa6df9 Mon Sep 17 00:00:00 2001 From: jon Date: Thu, 4 Jul 2024 10:28:01 +0100 Subject: [PATCH 2/2] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be3cebe..c2db147 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ php artisan vendor:publish --tag="laravel-flows-config" You can publish migrations ```bash -php artisan vendor:publish --tag=":laravel-flows-migrations" +php artisan vendor:publish --tag="laravel-flows-migrations" php artisan migrate ```