mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-13 02:32:15 +01:00
Renamed jetstream team to organization
This commit is contained in:
@@ -7,14 +7,24 @@ namespace App\Models;
|
||||
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
||||
use Laravel\Jetstream\Membership as JetstreamMembership;
|
||||
|
||||
/**
|
||||
* @property string $id
|
||||
* @property string $role
|
||||
* @property string $organization_id
|
||||
* @property string $user_id
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
* @property-read Organization $organization
|
||||
* @property-read User $user
|
||||
*/
|
||||
class Membership extends JetstreamMembership
|
||||
{
|
||||
use HasUuids;
|
||||
|
||||
/**
|
||||
* Indicates if the IDs are auto-incrementing.
|
||||
* The table associated with the pivot model.
|
||||
*
|
||||
* @var bool
|
||||
* @var string
|
||||
*/
|
||||
public $incrementing = true;
|
||||
protected $table = 'organization_user';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user