From ecac4d4f97a6e0f5ce82a0a957c207c829ce00ab Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 7 Sep 2022 20:32:31 +1000 Subject: [PATCH] Add additional field for reports to companies table --- ...dd_reporting_option_to_companies_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2022_09_07_101731_add_reporting_option_to_companies_table.php diff --git a/database/migrations/2022_09_07_101731_add_reporting_option_to_companies_table.php b/database/migrations/2022_09_07_101731_add_reporting_option_to_companies_table.php new file mode 100644 index 000000000000..494b2a5a900d --- /dev/null +++ b/database/migrations/2022_09_07_101731_add_reporting_option_to_companies_table.php @@ -0,0 +1,32 @@ +boolean('report_include_deleted')->default(false); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('companies', function (Blueprint $table) { + // + }); + } +};