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