MicroFrameWork/app/models/Upvote.php

10 lines
184 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?php
namespace Models;
use \Illuminate\Database\Eloquent\Model;
class Upvote extends Model {
protected $table = 'Upvotes';
protected $fillable = ['answer_id', 'user_id'];
}