increments('id'); $table->string('Name', 100)->nullable(); $table->text('description')->nullable(); $table->boolean('debit')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('balance_types'); } }