Public is just the boolean (#1101)

This commit is contained in:
Lance Pioch 2018-04-08 16:36:40 -04:00 committed by Dane Everitt
parent 28052d5943
commit ceff5acb85

View file

@ -41,7 +41,6 @@ class Node extends Model implements CleansAttributes, ValidableContract
* @var array
*/
protected $casts = [
'public' => 'integer',
'location_id' => 'integer',
'memory' => 'integer',
'disk' => 'integer',
@ -228,5 +227,4 @@ class Node extends Model implements CleansAttributes, ValidableContract
{
return $this->hasMany(Allocation::class);
}
}
}