increments('id'); $table->integer('user_id')->unsigned()->nullable(); $table->integer('min')->nullable(); $table->integer('max')->nullable(); $table->string('text'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('salaries'); } }