Fix Paste model and migration

This commit is contained in:
Les De Ridder 2016-05-29 01:34:24 +02:00
джерело c22392bcc4
коміт f389161b79
2 змінених файлів з 2 додано та 2 видалено

@ -19,7 +19,7 @@ class Paste extends Model
return $this->deletion !== null;
}
public function delete($reason, $deleted_by)
public function soft_delete($reason, $deleted_by)
{
if($this->isDeleted())
{

@ -16,7 +16,7 @@ class CreatePastesTable extends Migration
$table->char('id', 6);
$table->string('language');
$table->timestamp('created_at');
$table->timestamp('expires_at');
$table->timestamp('expires_at')->nullable();
$table->primary('id');
});