dbfdg bigIncrements('id'); $table->string('holder_name'); $table->string('bank_name'); $table->string('account_number'); $table->integer('chart_account_id')->default(0); $table->float('opening_balance', 15, 2)->default('0.00'); $table->string('contact_number'); $table->text('bank_address'); $table->integer('created_by')->default('0'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bank_accounts'); } }