From ff78f354e41fbfa4bf861d7f7f26c89700e1e1c2 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 24 Jun 2021 20:01:22 +1000 Subject: [PATCH] set exchange_rate_id to nullable --- ...95942_payments_table_currency_nullable.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2021_06_24_095942_payments_table_currency_nullable.php diff --git a/database/migrations/2021_06_24_095942_payments_table_currency_nullable.php b/database/migrations/2021_06_24_095942_payments_table_currency_nullable.php new file mode 100644 index 000000000000..02381a29c181 --- /dev/null +++ b/database/migrations/2021_06_24_095942_payments_table_currency_nullable.php @@ -0,0 +1,32 @@ +unsignedInteger('exchange_currency_id')->nullable()->change(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}