share-lt/app/Models/Change.php
jon brookes 5b0e55c4b2 feat: implement Change resource with CRUD functionality and migration
update image tags to v0.0.8 in build scripts and docker-compose files
2026-02-17 16:07:22 +00:00

19 lines
274 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Change extends Model
{
protected $fillable = [
'note',
'user_id',
'type',
];
public function user()
{
return $this->belongsTo(User::class);
}
}