increments('id'); $table->integer('user_id')->nullable(); $table->integer('seller_id')->nullable(); $table->integer('task_scheduler_id')->nullable(); $table->integer('delivery_type')->nullable(); $table->string('repeat_interval', 60)->nullable(); $table->enum('status', ['Active','Inactive'])->nullable(); $table->package::package.fieldtype.KEY('PRIMARY')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subscriptions'); } }