id(); $table->string('name'); $table->string('contact_name'); $table->string('email')->nullable(); $table->string('alternative_email')->nullable(); $table->string('address')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); $table->string('photo')->nullable(); $table->string('number')->nullable(); $table->text('benefits')->nullable(); $table->tinyInteger('status')->comment('1=>Active, 2=>In Active')->default(1)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('health_insurance_hospitals'); } }