forked from LaravelFreelancerNL/laravel-arangodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Indexes are now named according to Laravel's naming convention
+ Added CRUD functions for view handling in migrations
- Loading branch information
1 parent
1fae152
commit 0a0a564
Showing
9 changed files
with
622 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Migrations | ||
|
||
## Views (ArangoSearch) | ||
You can create, edit or delete an ArangoDB view. | ||
|
||
### New view | ||
```Schema::createView($viewName, $options); ``` | ||
|
||
### Edit view | ||
```Schema::createView($viewName, $options); ``` | ||
|
||
### Delete view | ||
```Schema::createView($viewName); ``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.