increments('id'); $table->string('name', 100)->nullable(); $table->string('email', 255)->nullable(); $table->string('password', 100)->nullable(); $table->string('api_token', 255)->nullable(); $table->string('remember_token', 255)->nullable(); $table->enum('sex', ['','male','female'])->nullable(); $table->date('dob')->nullable(); $table->string('mobile', 100)->nullable(); $table->string('phone', 100)->nullable(); $table->string('address', 255)->nullable(); $table->string('street', 100)->nullable(); $table->string('city', 100)->nullable(); $table->string('district', 100)->nullable(); $table->string('state', 100)->nullable(); $table->integer('country')->nullable(); $table->string('photo', 500)->nullable(); $table->string('web', 100)->nullable(); $table->enum('status', ['New','Active','Suspended','Locked'])->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('clients'); } }