increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->integer('shop_id')->nullable(); $table->date('startdate')->nullable(); $table->date('enddate')->nullable(); $table->text('images')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('flyers'); } }