id(); $table->text('description')->nullable(); $table->string('uuid')->unique(); $table->boolean('enabled')->default(true); $table->boolean('save_s3')->default(true); $table->string('frequency'); $table->integer('number_of_backups_locally')->default(7); $table->morphs('database'); $table->foreignId('s3_storage_id')->nullable(); $table->foreignId('team_id'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('scheduled_database_backups'); } };