From 71644696d1738ce656d03803d4b2c93ab0d37387 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 22 Sep 2021 17:21:48 -0700 Subject: [PATCH] Removed duplicate migration Signed-off-by: snipe --- ..._005043_add_depreciation_minimum_value.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 database/migrations/2021_08_17_005043_add_depreciation_minimum_value.php diff --git a/database/migrations/2021_08_17_005043_add_depreciation_minimum_value.php b/database/migrations/2021_08_17_005043_add_depreciation_minimum_value.php deleted file mode 100644 index 007fb77c0f..0000000000 --- a/database/migrations/2021_08_17_005043_add_depreciation_minimum_value.php +++ /dev/null @@ -1,32 +0,0 @@ -decimal('depreciation_min', 8,2)->after('months')->nullable(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('depreciations', function (Blueprint $table) { - $table->dropColumn('depreciation_min'); - }); - } -} \ No newline at end of file