dbfdg id(); $table->integer('chart_account_id')->default('0.00'); $table->decimal('price',15,2)->default('0.00'); $table->string('description')->nullable(); $table->string('type'); $table->integer('ref_id')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bill_accounts'); } };