Commit 99a938d8 authored by José Rômulo's avatar José Rômulo
Browse files

Modificando tabela participantes

parent 0336f9cd
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterTableParticipantes extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('participantes', function (Blueprint $table) {
$table->string('anexoTermoCompromisso')->nullable();
$table->string('anexoComprovanteMatricula')->nullable();
$table->string('anexoLattes')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('participantes', function (Blueprint $table) {
$table->dropColumn('anexoTermoCompromisso');
$table->dropColumn('anexoComprovanteMatricula');
$table->dropColumn('anexoLattes');
});
}
}
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