Merge pull request #10 from nakazawakan/modelchange

Modelchange
このコミットが含まれているのは:
chankan77 2021-10-05 14:03:48 +09:00 committed by GitHub
コミット a48ca84dc3
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
5個のファイルの変更5行の追加0行の削除

ファイルの表示

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class Child extends Model
{
use HasFactory;
protected $fillable = ['father_id', 'title', 'text', 'memo', 'pdf'];
}

ファイルの表示

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class FatherRelation extends Model
{
use HasFactory;
protected $fillable = ['father_id', 'child_id', 'hire_at'];
}

ファイルの表示

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class LoginLimits extends Model
{
use HasFactory;
protected $fillable = ['user_agent', 'fail_number'];
}

ファイルの表示

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class MeetingImage extends Model
{
use HasFactory;
protected $fillable = ['meeting_id', 'image'];
}

ファイルの表示

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class TelActivation extends Model
{
use HasFactory;
protected $fillable = ['tel', 'token'];
}