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

@@ -35,9 +35,10 @@ class ExpandTransactionsTable extends Migration
public function up()
{
Schema::table(
'transactions', function (Blueprint $table) {
$table->smallInteger('identifier', false, true)->default(0);
}
'transactions',
function (Blueprint $table) {
$table->smallInteger('identifier', false, true)->default(0);
}
);
}
}