diff --git a/.env.example b/.env.example index 377939c6d2c9..63f81969dae6 100644 --- a/.env.example +++ b/.env.example @@ -51,7 +51,7 @@ ERROR_EMAIL= NINJA_ENVIRONMENT=selfhost -PHANTOMJS_KEY= +PHANTOMJS_CLOUD_KEY='a-demo-key-with-low-quota-per-ip-address' PHANTOMJS_SECRET= SELF_UPDATER_REPO_VENDOR = invoiceninja diff --git a/database/migrations/2020_09_27_215800_update_gateway_table_visible_column.php b/database/migrations/2020_09_27_215800_update_gateway_table_visible_column.php new file mode 100644 index 000000000000..66558cbb13fa --- /dev/null +++ b/database/migrations/2020_09_27_215800_update_gateway_table_visible_column.php @@ -0,0 +1,31 @@ +update(['visible' => 0]); + + Gateway::whereIn('id', [1,15,20,39])->update(['visible' => 1]); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}