Merge pull request #11661 from SourceDoctor/app_dhcp_enhancement

Application DHCP Upgrade
This commit is contained in:
Tony Murray
2020-06-16 17:03:45 -05:00
committed by GitHub
14 changed files with 412 additions and 27 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterMetricColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('application_metrics', function (Blueprint $table) {
$table->string('metric', 64)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('application_metrics', function (Blueprint $table) {
$table->string('metric', 32)->change();
});
}
}