feat(Nextcloud sync & optimize)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m18s
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m18s
This commit is contained in:
@@ -6,6 +6,31 @@ use App\Enums\IspconfigType;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $member_id
|
||||
* @property string|null $ispconfig_client_id
|
||||
* @property string|null $ispconfig_service_user_id
|
||||
* @property string|null $email
|
||||
* @property IspconfigType $type
|
||||
* @property array<array-key, mixed>|null $data
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @property-read \App\Models\Member $member
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereData($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereEmail($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereIspconfigClientId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereIspconfigServiceUserId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereMemberId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereType($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class IspconfigMember extends Model
|
||||
{
|
||||
protected $table = 'ispconfigs_members';
|
||||
|
||||
Reference in New Issue
Block a user