increments('id'); $table->string('name', 255)->nullable(); $table->string('details', 2555)->nullable(); $table->string('address', 255)->nullable(); $table->text('image')->nullable(); $table->string('lattitude', 100)->nullable(); $table->string('longitude', 100)->nullable(); $table->string('telephone', 255)->nullable(); $table->string('fax', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('emergency_no', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('pharmacies'); } }