From 1a2db267dcf2b26955e7a4cda52563a998fe6057 Mon Sep 17 00:00:00 2001 From: Zois Pagoulatos Date: Tue, 20 Sep 2022 20:57:44 +0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b2f2f8..931e503 100644 --- a/README.md +++ b/README.md @@ -140,14 +140,14 @@ php artisan snapshot:create Maybe you only want to snapshot a couple of tables. You can do this by passing the `--table` multiple times or as a comma separated list: ```bash -# Bot commands create a snapshot containing only the posts and users tables: +# Both commands create a snapshot containing only the posts and users tables: php artisan snapshot:create --table=posts,users php artisan snapshot:create --table=posts --table=users ``` You may want to exclude some tables from snapshot. You can do this by passing the `--exclude` multiple times or as a comma separated list: ```bash -# create snapshot from all tables exclude the users and posts +# create snapshot from all tables excluding the users and posts php artisan snapshot:create --exclude=posts,users php artisan snapshot:create --exclude=posts --exclude=users ```