mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
14 lines
232 B
PHP
14 lines
232 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Conversation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['from_id', 'to_id'];
|
|
}
|