increments('id'); $table->integer('company_id')->nullable(); $table->integer('user_id')->nullable(); $table->integer('job_id')->nullable(); $table->integer('booking_id')->nullable(); $table->string('repeat_interval', 60)->nullable(); $table->enum('status', ['Active','Inactive'])->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->string('user_type', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subscriptions'); } }