diff options
-rw-r--r-- | app/PublicKeys.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/PublicKeys.php b/app/PublicKeys.php new file mode 100644 index 0000000..92f1b24 --- /dev/null +++ b/app/PublicKeys.php @@ -0,0 +1,17 @@ +<?php + +namespace App; + +use Illuminate\Database\Eloquent\Model; + +class PublicKeys extends Model +{ + /** + * The attributes that are mass assignable. + * + * @var array + */ + protected $fillable = [ + 'user_id', 'key' + ]; +} |