From 5fbae548e2edc3d6dba927db7372696baeef728e Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 10 Jul 2016 16:47:22 +0300 Subject: [PATCH] Updated plan price field name --- database/migrations/2016_07_08_083802_support_new_pricing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2016_07_08_083802_support_new_pricing.php b/database/migrations/2016_07_08_083802_support_new_pricing.php index 947966f8304d..36b1fccc19ed 100644 --- a/database/migrations/2016_07_08_083802_support_new_pricing.php +++ b/database/migrations/2016_07_08_083802_support_new_pricing.php @@ -14,7 +14,7 @@ class SupportNewPricing extends Migration { Schema::table('companies', function (Blueprint $table) { - $table->decimal('price', 7, 2)->nullable(); + $table->decimal('plan_price', 7, 2)->nullable(); $table->smallInteger('num_users')->default(1); });