From bdba499c7873a0aec975a905566507c7cb2148a4 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Mon, 8 Apr 2019 13:15:18 -0400 Subject: [PATCH] Update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 48f5cc06..e8f00f7a 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,7 @@ class CarController extends Controller { * `@HasOne()` (one-to-one) * `@HasMany()` (one-to-many) * `@BelongsTo()` (one-to-one) +* `@ManyToMany()` (many-to-many, using a "pivot" table) The annotations can be abbreviated with the default options (ex. `@hasOne`), or supplied with custom parameters (ex. `@HasOne(foreignKey: 'foreign_id')`).