decimal('exchange_rate_to_base', 15, 6)->default(1.00)->after('decimal_places'); $table->boolean('is_base')->default(false)->after('exchange_rate_to_base'); }); } public function down(): void { Schema::table('currencies', function (Blueprint $table) { $table->dropColumn(['exchange_rate_to_base', 'is_base']); }); } };