integer('created_at')->nullable(); $table->integer('updated_at')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('pomos', function (Blueprint $table) { // Drop created_at and updated_at columns from pomos table $table->dropColumn('created_at'); $table->dropColumn('updated_at'); }); } };