Change metric_points.value to DECIMAL(15,3). Closes #1508

This commit is contained in:
James Brooks 2016-02-18 08:53:16 +00:00
parent 37af01483a
commit 026d296d8f

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