このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/app/Models/EmailActivation.php

14 行
321 B
PHP
Raw 通常表示 履歴

2021-08-13 13:17:12 +09:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmailActivation extends Model
{
use HasFactory;
protected $fillable = ['type', 'father_id', 'email', 'token', 'ttl', 'relation_limit'];
2021-10-21 10:38:11 +09:00
protected $attributes = ['type' => 0];
2021-08-13 13:17:12 +09:00
}