increments('id'); $table->bigInteger('referenceid')->nullable(); $table->bigInteger('typeid')->nullable(); $table->bigInteger('amount')->nullable(); $table->date('date')->nullable(); $table->text('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('balances'); } }