From 9eb9f8b00da3c42588c6ddb7d8d541fe8b31f7ba Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 11 Aug 2022 11:16:51 +1000 Subject: [PATCH] Add recurring invoice id to licenses table --- ...11_011534_licenses_table_for_self_host.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2022_08_11_011534_licenses_table_for_self_host.php diff --git a/database/migrations/2022_08_11_011534_licenses_table_for_self_host.php b/database/migrations/2022_08_11_011534_licenses_table_for_self_host.php new file mode 100644 index 000000000000..8fffec838a07 --- /dev/null +++ b/database/migrations/2022_08_11_011534_licenses_table_for_self_host.php @@ -0,0 +1,30 @@ +unsignedBigInteger('recurring_invoice_id')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +};