Add story models

This commit is contained in:
Daniel Supernault 2018-11-03 21:45:44 -06:00
parent 9f29ab9338
commit 7b748ecc8a
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
2 changed files with 20 additions and 0 deletions

10
app/Story.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Story extends Model
{
//
}

10
app/StoryReaction.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class StoryReaction extends Model
{
//
}