Code clean up.

This commit is contained in:
James Cole
2017-11-15 10:53:17 +01:00
parent 649dca77f5
commit ef837f20dd
22 changed files with 632 additions and 604 deletions

View File

@@ -24,7 +24,6 @@ class FixNullables extends Migration
*/
public function down()
{
}
/**
@@ -35,15 +34,17 @@ class FixNullables extends Migration
public function up()
{
Schema::table(
'rule_groups', function (Blueprint $table) {
$table->text('description')->nullable()->change();
}
'rule_groups',
function (Blueprint $table) {
$table->text('description')->nullable()->change();
}
);
Schema::table(
'rules', function (Blueprint $table) {
$table->text('description')->nullable()->change();
}
'rules',
function (Blueprint $table) {
$table->text('description')->nullable()->change();
}
);
}
}