increments('id'); $table->integer('provider_id')->nullable(); $table->integer('user_id')->nullable(); $table->date('date')->nullable(); $table->time('start_time')->nullable(); $table->time('end_time')->nullable(); $table->string('location', 255)->nullable(); $table->text('description')->nullable(); $table->string('type', 100)->nullable(); $table->string('user_type', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('provider_availabilities'); } }