mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Add story models
This commit is contained in:
parent
9f29ab9338
commit
7b748ecc8a
2 changed files with 20 additions and 0 deletions
10
app/Story.php
Normal file
10
app/Story.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Story extends Model
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
10
app/StoryReaction.php
Normal file
10
app/StoryReaction.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class StoryReaction extends Model
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
Loading…
Reference in a new issue