diff options
author | Marvin Borner | 2018-07-07 13:03:27 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-07 13:03:27 +0200 |
commit | a2b12b2a36c6255ba7f17db5353eade5f4dc04b2 (patch) | |
tree | f8871f7fe6fb755953a4fcbb9e52a2aeb2ee380a /app/PublicKeys.php | |
parent | 0f2915fffeba2a41d157e766e61c4bbd86318415 (diff) |
Added eloquent model for public keys
Diffstat (limited to 'app/PublicKeys.php')
-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' + ]; +} |