diff --git a/database/migrations/2021_10_07_141737_razorpay.php b/database/migrations/2021_10_07_141737_razorpay.php new file mode 100644 index 000000000000..7c397489153e --- /dev/null +++ b/database/migrations/2021_10_07_141737_razorpay.php @@ -0,0 +1,28 @@ +name = 'Razorpay'; + $gateway->key = Str::lower(Str::random(32)); + $gateway->provider = 'Razorpay'; + $gateway->is_offsite = false; + $gateway->fields = new \stdClass; + $gateway->visible = true; + $gateway->site_url = 'https://razorpay.com'; + $gateway->default_gateway_type_id = GatewayType::HOSTED_PAGE; + $gateway->save(); + } +}