diff --git a/VERSION.txt b/VERSION.txt index 343ce67949..30f6fdd88d 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 08702a96a2..53476a4e5a 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 14cdf0c6e5..a4cc4ecb67 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 479fdfc1b1..b90214ce63 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) { - // - }); + } }