Merge pull request #1525 from CachetHQ/change-metric-points-value-column

Change metric_points.value to DECIMAL(15,3)
This commit is contained in:
James Brooks 2016-02-20 11:54:40 +00:00
commit cb08443b27

View File

@ -0,0 +1,41 @@
<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterTableMetricPointsChangeValueColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('metric_points', function (Blueprint $table) {
$table->decimal('value', 15, 3)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('metric_points', function (Blueprint $table) {
$table->decimal('value', 10, 3)->change();
});
}
}