Commit 7010e636 authored by Lucas Henrique's avatar Lucas Henrique
Browse files

Adiciona softdelete na tabela AvaliacaoTrabalhos

parent f926540e
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddSoftdeleteToAvaliacaoTrabalhos extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('avaliacao_trabalhos', function (Blueprint $table) {
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('avaliacao_trabalhos', function (Blueprint $table) {
$table->dropSoftDeletes();
});
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment