diff --git a/database/migrations/2020_07_21_112424_update_enabled_modules_value.php b/database/migrations/2020_07_21_112424_update_enabled_modules_value.php new file mode 100644 index 000000000000..8acb3e848777 --- /dev/null +++ b/database/migrations/2020_07_21_112424_update_enabled_modules_value.php @@ -0,0 +1,32 @@ +each(function ($company){ + $company->enabled_modules = 32767; + $company->save(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}