From 073fb54035dbf8690754ed0c12091f58f7c37582 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 1 Jun 2022 20:52:25 +1000 Subject: [PATCH] v5.3.94 --- VERSION.txt | 2 +- config/ninja.php | 4 ++-- .../2022_05_28_234651_create_purchase_orders_table.php | 1 - ...5_30_184320_add_job_related_fields_to_schedulers_table.php | 4 +--- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 343ce679495b..30f6fdd88d8a 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.3.93 \ No newline at end of file +5.3.94 \ No newline at end of file diff --git a/config/ninja.php b/config/ninja.php index 08702a96a264..53476a4e5a6b 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -14,8 +14,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => '5.3.93', - 'app_tag' => '5.3.93', + 'app_version' => '5.3.94', + 'app_tag' => '5.3.94', 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', ''), diff --git a/database/migrations/2022_05_28_234651_create_purchase_orders_table.php b/database/migrations/2022_05_28_234651_create_purchase_orders_table.php index 14cdf0c6e5f5..a4cc4ecb6792 100644 --- a/database/migrations/2022_05_28_234651_create_purchase_orders_table.php +++ b/database/migrations/2022_05_28_234651_create_purchase_orders_table.php @@ -122,6 +122,5 @@ class CreatePurchaseOrdersTable extends Migration */ public function down() { - Schema::dropIfExists('purchase_orders'); } } diff --git a/database/migrations/2022_05_30_184320_add_job_related_fields_to_schedulers_table.php b/database/migrations/2022_05_30_184320_add_job_related_fields_to_schedulers_table.php index 479fdfc1b195..b90214ce6342 100644 --- a/database/migrations/2022_05_30_184320_add_job_related_fields_to_schedulers_table.php +++ b/database/migrations/2022_05_30_184320_add_job_related_fields_to_schedulers_table.php @@ -35,8 +35,6 @@ class AddJobRelatedFieldsToSchedulersTable extends Migration */ public function down() { - Schema::table('schedulers', function (Blueprint $table) { - // - }); + } }