diff --git a/database/migrations/2022_04_05_031447_add_pontuacao_parecer.php b/database/migrations/2022_04_05_031447_add_pontuacao_parecer.php new file mode 100644 index 0000000000000000000000000000000000000000..b40c99a4c6fdb6aeee25c703b836a45e7635d332 --- /dev/null +++ b/database/migrations/2022_04_05_031447_add_pontuacao_parecer.php @@ -0,0 +1,32 @@ +integer('pontuacao')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('avaliador_trabalho', function (Blueprint $table) { + $table->dropColumn('pontuacao'); + }); + } +}