File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,14 +140,14 @@ php artisan snapshot:create
140140Maybe 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:
141141
142142``` bash
143- # Bot commands create a snapshot containing only the posts and users tables:
143+ # Both commands create a snapshot containing only the posts and users tables:
144144php artisan snapshot:create --table=posts,users
145145php artisan snapshot:create --table=posts --table=users
146146```
147147
148148You may want to exclude some tables from snapshot. You can do this by passing the ` --exclude ` multiple times or as a comma separated list:
149149``` bash
150- # create snapshot from all tables exclude the users and posts
150+ # create snapshot from all tables excluding the users and posts
151151php artisan snapshot:create --exclude=posts,users
152152php artisan snapshot:create --exclude=posts --exclude=users
153153```
You can’t perform that action at this time.
0 commit comments