1: <?php
2:
3: /**
4: * Deep
5: *
6: * @package rsanchez\Deep
7: * @author Rob Sanchez <info@robsanchez.com>
8: */
9:
10: namespace rsanchez\Deep\Model;
11:
12: use Illuminate\Database\Eloquent\Model;
13:
14: /**
15: * Model for the fieldtypes table
16: */
17: class Fieldtype extends Model
18: {
19: /**
20: * {@inheritdoc}
21: *
22: * @var string
23: */
24: protected $table = 'fieldtypes';
25:
26: /**
27: * {@inheritdoc}
28: *
29: * @var string
30: */
31: protected $primaryKey = 'fieldtype_id';
32: }
33: