increments('id'); $table->string('name', 100)->nullable(); $table->string('email', 255)->nullable(); $table->string('password', 100)->nullable(); $table->string('api_token', 60)->nullable(); $table->string('remember_token', 255)->nullable(); $table->enum('sex', ['','male','female'])->nullable(); $table->string('designation', 50)->nullable(); $table->string('mobile', 100)->nullable(); $table->string('phone', 100)->nullable(); $table->string('address', 255)->nullable(); $table->integer('region_id')->nullable(); $table->integer('country_id')->nullable(); $table->integer('state_id')->nullable(); $table->integer('location_id')->nullable(); $table->integer('sublocation_id')->nullable(); $table->string('zip', 100)->nullable(); $table->dateTime('email_verified_at')->nullable(); $table->string('photo', 500)->nullable(); $table->string('web', 100)->nullable(); $table->enum('status', ['New','Active','Suspended','Locked'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subscribers'); } }