aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/PublicKeys.php
blob: 92f1b2400adeca8a1d1f665aa4040edbe08817bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
    ];
}