Updated plan price field name

This commit is contained in:
Hillel Coren 2016-07-10 16:47:22 +03:00
parent afb34d1de6
commit 5fbae548e2

View File

@ -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);
});