Initial Commit

This commit is contained in:
shibafu
2017-08-27 04:44:53 +09:00
commit be2cf3328a
114 changed files with 32069 additions and 0 deletions

16
app/Ejaculation.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Ejaculation extends Model
{
//
protected $fillable = [
'user_id', 'ejaculated_date',
'note', 'geo_latitude', 'geo_longitude',
'is_private'
];
}