increments('id'); $table->integer('restaurant_id')->nullable(); $table->integer('campaign_id')->nullable(); $table->integer('template_id')->nullable(); $table->string('post_to', 50)->nullable(); $table->text('post_content')->nullable(); $table->text('post_response')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('instagram_campaigns'); } }