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) { + // + }); + } +};