increments('id'); $table->integer('min_pwd_len')->nullable(); $table->integer('max_pwd_length')->nullable(); $table->tinyInteger('withdraw_pwd')->nullable(); $table->tinyInteger('edit_profile_pwd')->nullable(); $table->tinyInteger('update_code')->nullable(); $table->tinyInteger('change_sts')->nullable(); $table->tinyInteger('notify_status')->nullable(); $table->tinyInteger('subscription_status')->nullable(); $table->tinyInteger('subscription_type')->nullable(); $table->integer('grace_period')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('user_settings'); } }