View file File name : 2023_02_20_213951_add_column_field_to_teams.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddColumnFieldToTeams extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('teams', function (Blueprint $table) { $table->decimal('limite_atendimento_pcon', 20, 2)->default(0); $table->timestamp('updated_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('teams', function (Blueprint $table) { // }); } }