Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mulkave authored Jul 19, 2022
1 parent 3209a8f commit a95fd1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -915,15 +915,15 @@ Migration commands are the same as those of Eloquent, in the form of `neo4j:migr

Like in Laravel you can create a new migration by using the `make` command with Artisan:

php artisan neo4j:migrate:make create_user_label
php artisan neo4j:make:migration create_user_label

Label migrations will be placed in `app/database/labels`

You can add additional options to commands like:

php artisan neo4j:migrate:make foo --path=app/labels
php artisan neo4j:migrate:make create_user_label --create=User
php artisan neo4j:migrate:make create_user_label --label=User
php artisan neo4j:make:migration foo --path=app/labels
php artisan neo4j:make:migration create_user_label --create=User
php artisan neo4j:make:migration create_user_label --label=User


### Running Migrations
Expand Down

0 comments on commit a95fd1b

Please sign in to comment.