1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-01-22 23:09:41 +00:00
pixelfed/app/Instance.php

11 lines
135 B
PHP
Raw Normal View History

2018-09-02 04:43:11 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Instance extends Model
{
2019-01-11 03:44:48 +00:00
protected $fillable = ['domain'];
2018-09-02 04:43:11 +00:00
}