From 0eea608b7efd4ca6895086d9e92fb458aa37b67d Mon Sep 17 00:00:00 2001 From: Lucas Henrique Date: Tue, 8 Nov 2022 21:52:53 -0300 Subject: [PATCH] =?UTF-8?q?Migra=C3=A7=C3=A3o=20para=20criar=20coluna=20co?= =?UTF-8?q?nflitosInteresse=20na=20tabela=20Trabalhos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...conflitos_interesse_to_trabalhos_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2022_11_08_214901_add_conflitos_interesse_to_trabalhos_table.php diff --git a/database/migrations/2022_11_08_214901_add_conflitos_interesse_to_trabalhos_table.php b/database/migrations/2022_11_08_214901_add_conflitos_interesse_to_trabalhos_table.php new file mode 100644 index 0000000..69d21a1 --- /dev/null +++ b/database/migrations/2022_11_08_214901_add_conflitos_interesse_to_trabalhos_table.php @@ -0,0 +1,32 @@ +text('conflitosInteresse')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('trabalhos', function (Blueprint $table) { + $table->dropColumn('conflitosInteresse'); + }); + } +} -- GitLab