Use decimal on metric points
This commit is contained in:
@@ -16,7 +16,7 @@ class CreateMetricPointsTable extends Migration
|
||||
Schema::create('metric_points', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->integer('metric_id');
|
||||
$table->integer('value');
|
||||
$table->decimal('value', 10, 3);
|
||||
$table->timestamps();
|
||||
|
||||
$table->index('metric_id');
|
||||
|
||||
@@ -18,7 +18,7 @@ class CreateMetricsTable extends Migration
|
||||
$table->string('name');
|
||||
$table->string('suffix');
|
||||
$table->text('description');
|
||||
$table->integer('default_value');
|
||||
$table->decimal('default_value', 10, 3);
|
||||
$table->boolean('display_chart')->default(1);
|
||||
$table->timestamps();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user