increments('id'); $table->text('name')->nullable(); $table->integer('dealership_make')->nullable(); $table->string('phone', 255)->nullable(); $table->text('website')->nullable(); $table->text('email')->nullable(); $table->string('opening_from', 255)->nullable(); $table->string('opening_to', 255)->nullable(); $table->text('location')->nullable(); $table->string('lat', 30)->nullable(); $table->string('lng', 30)->nullable(); $table->enum('dealer_type', ['Verified','Unverified'])->nullable(); $table->text('social_media')->nullable(); $table->text('description')->nullable(); $table->text('images')->nullable(); $table->text('logo')->nullable(); $table->string('slug', 255)->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('dealers'); } }