mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int|null $user_id
|
|
* @property int $profile_id
|
|
* @property string|null $pronouns
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun whereProfileId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun wherePronouns($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|UserPronoun whereUserId($value)
|
|
*
|
|
* @mixin \Eloquent
|
|
*/
|
|
class UserPronoun extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
}
|