pixelfed/pixelfed

View on GitHub
app/CircleProfile.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class CircleProfile extends Model
{
    protected $fillable = [
        'circle_id',
        'profile_id'
    ];
}