boolean('reinvest_dividends')->default(false)->after('quantity'); }); Schema::table('transactions', function (Blueprint $table) { $table->boolean('reinvested_dividend')->default(false)->after('split'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('holdings', function (Blueprint $table) { $table->dropColumn('reinvest_dividends'); }); Schema::table('transactions', function (Blueprint $table) { $table->dropColumn('reinvested_dividend'); }); } };