pastethingy/app/Deletion.php

16 lines
199 B
PHP
Raw Permalink Normal View History

2016-05-28 19:05:54 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Deletion extends Model
{
2016-05-28 22:43:44 +02:00
public $timestamps = false;
public function paste()
{
return $this->belongsTo(Paste::class);
}
2016-05-28 19:05:54 +02:00
}