Fix Paste model and migration

This commit is contained in:
Les De Ridder 2016-05-29 01:34:24 +02:00
parent c22392bcc4
commit f389161b79
2 changed files with 2 additions and 2 deletions

View File

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

View File

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