server/src/app/Models/CocoonRevision.php
author ymh <ymh.work@gmail.com>
Thu, 22 Sep 2016 12:38:24 +0200
changeset 277 bd4bc1db4f40
parent 18 f2a40bbc27f6
permissions -rw-r--r--
add blank node save and geoinfo to back model

<?php

namespace CorpusParole\Models;

use Illuminate\Database\Eloquent\Model;

class CocoonRevision extends Model
{
    public function document() {
        return $this->belongsTo('CorpusParole\Models\CocoonDocument');
    }
}