increments('id'); $table->integer('group_id')->nullable(); $table->integer('restaurant_id')->nullable(); $table->text('name')->nullable(); $table->text('subject')->nullable(); $table->text('title')->nullable(); $table->text('content')->nullable(); $table->text('image')->nullable(); $table->dateTime('schedule_time')->nullable(); $table->integer('is_send')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('campaigns'); } }