add checkin_webhooks table

This commit is contained in:
shibafu
2020-07-19 18:39:19 +09:00
parent 034a47cd25
commit 5926c6e640
5 changed files with 86 additions and 0 deletions

View File

@@ -71,4 +71,9 @@ class User extends Authenticatable
{
return $this->hasMany(Like::class);
}
public function checkinWebhooks()
{
return $this->hasMany(CheckinWebhook::class);
}
}