increments('id'); $table->integer('restaurant_id')->nullable(); $table->string('name', 255)->nullable(); $table->date('date')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 60)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('holidays'); } }