Fix some migrations [skip ci]

This commit is contained in:
James Cole 2016-09-18 18:14:07 +02:00
parent 6cff3eb61e
commit 221e4b7fc0

View File

@ -85,7 +85,7 @@ class CreateMainTables extends Migration
$table->integer('user_id', false, true); $table->integer('user_id', false, true);
$table->integer('account_type_id', false, true); $table->integer('account_type_id', false, true);
$table->string('name', 1024); $table->string('name', 1024);
$table->decimal('virtual_balance', 10, 4); $table->decimal('virtual_balance', 10, 4)->nullable();
$table->string('iban', 255)->nullable(); $table->string('iban', 255)->nullable();
$table->boolean('active')->default(1); $table->boolean('active')->default(1);