id(); $table->boolean('paused')->default(false); $table->boolean('is_deleted')->default(false); $table->string('repeat_every'); $table->timestamp('start_from')->nullable(); $table->timestamp('scheduled_run')->nullable(); $table->foreignIdFor(\App\Models\Company::class); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { } };