boolean('reinvest_dividends')->nullable()->after('quantity'); }); Schema::table('transactions', function (Blueprint $table) { $table->boolean('reinvested_dividend')->nullable()->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'); }); } };