This commit is contained in:
denisdulici
2017-10-04 01:25:03 +03:00
parent 88e62a8354
commit bbb34ab50a
8 changed files with 133 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class CreateAccountsTable extends Migration
$table->string('name');
$table->string('number');
$table->string('currency_code');
$table->decimal('opening_balance')->default('0');
$table->float('opening_balance', 15, 4)->default('0.0000');
$table->string('bank_name')->nullable();
$table->string('bank_phone')->nullable();
$table->text('bank_address')->nullable();