server/src/app/Models/GeonamesHierarchy.php
author ymh <ymh.work@gmail.com>
Fri, 21 Oct 2016 16:07:19 +0200
changeset 383 82a3db4b1d39
parent 308 e032d686d88e
permissions -rw-r--r--
Correct application build + migration

<?php

namespace CorpusParole\Models;

use Illuminate\Database\Eloquent\Model;

class GeonamesHierarchy extends Model
{
    /**
     * The attributes that should be casted to native types.
     *
     * @var array
     */
    protected $casts = [
        'hierarchy' => 'array',
    ];
}