mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
.
This commit is contained in:
@@ -14,7 +14,7 @@ class AlterAvailabilityPercColumn extends Migration
|
|||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('availability', function (Blueprint $table) {
|
Schema::table('availability', function (Blueprint $table) {
|
||||||
$table->float('availability_perc', 9, 6)->default(0,000000)->change();
|
$table->float('availability_perc', 9, 6)->default(0.000000)->change();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ class AlterAvailabilityPercColumn extends Migration
|
|||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('availability', function (Blueprint $table) {
|
Schema::table('availability', function (Blueprint $table) {
|
||||||
$table->double('availability_perc', 6, 6)->default(0,000000)->change();
|
$table->double('availability_perc', 6, 6)->default(0.000000)->change();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user