10 lines
		
	
	
		
			188 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			188 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace app\models;
 | 
						|
 | 
						|
use \Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class Upvote extends Model {
 | 
						|
    protected $table = 'Upvotes';
 | 
						|
    protected $fillable = ['answer_id', 'user_id'];
 | 
						|
 | 
						|
} |