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