From 1cb321f0359d62e717869f110919c24325408c38 Mon Sep 17 00:00:00 2001 From: Guilherme Silva Date: Fri, 12 Nov 2021 09:42:43 -0300 Subject: [PATCH] Retirada do atributo ComprovanteBancario do migration antigo --- .../migrations/2021_09_14_091507_alter_table_participantes.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/database/migrations/2021_09_14_091507_alter_table_participantes.php b/database/migrations/2021_09_14_091507_alter_table_participantes.php index 40bff76..255dd35 100644 --- a/database/migrations/2021_09_14_091507_alter_table_participantes.php +++ b/database/migrations/2021_09_14_091507_alter_table_participantes.php @@ -17,7 +17,6 @@ class AlterTableParticipantes extends Migration $table->string('anexoTermoCompromisso')->nullable(); $table->string('anexoComprovanteMatricula')->nullable(); $table->string('anexoLattes')->nullable(); - $table->string('anexoComprovanteBancario')->nullable(); }); } @@ -32,7 +31,6 @@ class AlterTableParticipantes extends Migration $table->dropColumn('anexoTermoCompromisso'); $table->dropColumn('anexoComprovanteMatricula'); $table->dropColumn('anexoLattes'); - $table->dropColumn('anexoComprovanteBancario'); }); } } -- GitLab