default payment gateway altynasyr

This commit is contained in:
merdiano 2019-10-04 16:20:47 +05:00
parent 0ee38e403a
commit 4b44edccdd
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class AddGatewayIdAccountsTable extends Migration
public function up()
{
Schema::table('accounts', function (Blueprint $table) {
$table->unsignedInteger('payment_gateway_id')->default(config('attendize.payment_gateway_stripe'));
$table->unsignedInteger('payment_gateway_id')->default(config('attendize.payment_gateway_altyn_asyr'));
$table->foreign('payment_gateway_id')->references('id')->on('payment_gateways');
});
}