@@ -65,7 +65,7 @@ Union orders / Union aggregates / Union groupBy
65
65
Expression / raw
66
66
67
67
### Joins
68
- crossJoin / join / joinSub? / leftJoin / leftJoinSub?
68
+ crossJoin / join / joinSub / lateralJoin / leftJoin / leftJoinSub
69
69
70
70
#### Unsupported join clauses
71
71
rightJoin / rightJoinSub / joinWhere?
@@ -103,7 +103,7 @@ limit / offset / take / skip
103
103
when
104
104
105
105
### Insert statements
106
- insert / insertOrIgnore / insertUsing / insertGetId
106
+ insert / insertOrIgnore / insertUsing / insertOrIgnoreUsing / insertGetId
107
107
108
108
### Update statements
109
109
update / updateOrInsert / upsert /
@@ -183,14 +183,14 @@ updateExistingPivot /
183
183
184
184
## <a name =" artisan " ></a > Artisan commands
185
185
The following database-related artisan commands are supported:
186
- make : model / db / db: wipe /
187
- make: migration / migrate: install / migrate /
186
+ db / db : monitor / db: show / db: table / db : wipe /
187
+ make: migration / make : model / migrate: install / migrate /
188
188
migrate: fresh / migrate: refresh / migrate: reset / migrate: rollback /
189
189
migrate: status / convert: migrations
190
190
191
191
The following database-related artisan commands are NOT support at this time:
192
192
193
- db : monitor / db : show / db : table / schema: dump
193
+ schema: dump
194
194
195
195
## <a name =" testing " ></a > Testing
196
196
@@ -207,16 +207,6 @@ castAsJson (dummy method)
207
207
## <a name =" database-connection " ></a > Database connection
208
208
escape
209
209
210
- ## Console commands
211
- The following database related console commands are compatible with vanilla Laravel:
212
-
213
- db: monitor / db: seed / db: wipe
214
- make: migrate / migrate /
215
- migrate: fresh / migrate: install / migrate: refresh / migrate: reset / migrate: rollback / migrate: status
216
-
217
- ### Incompatible console commands
218
- db: show / db: table
219
-
220
210
## <a name =" known-incompatibilities " ></a > Known incompatibilities
221
211
Not all features can be made compatible. Known issues are listed below:
222
212
@@ -241,8 +231,9 @@ These methods don't work as ArangoDB requires you to declare the locking mechani
241
231
### Raw SQL
242
232
Any raw SQL needs to be replaced by raw AQL.
243
233
244
- ### Separate read and write connections
245
- Aranguent currently doesn't support the combination of a separate read and write connection
234
+ ### Database replication: separate read and write connections
235
+ ArangoDB offers a cluster setup for high availability instead of replication and as such
236
+ doesn't support the combination of a separate read and write connection.
246
237
247
238
### Transactions
248
239
[ At the beginning of a transaction you must declare collections that are used in (write) statements.] ( transactions.md )
0 commit comments