v.0.1
This commit is contained in:
10
app/models/Upvote.php
Normal file
10
app/models/Upvote.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace Models;
|
||||
|
||||
use \Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Upvote extends Model {
|
||||
protected $table = 'Upvotes';
|
||||
protected $fillable = ['answer_id', 'user_id'];
|
||||
|
||||
}
|
Reference in New Issue
Block a user