wip: scheduled backups

fix: file locations vendor unlocking
This commit is contained in:
Andras Bacsai
2023-08-09 14:44:36 +02:00
parent 46909dca85
commit d18de24cf9
18 changed files with 116 additions and 48 deletions

View File

@@ -10,6 +10,8 @@ return new class extends Migration {
Schema::create('scheduled_database_backups', function (Blueprint $table) {
$table->id();
$table->boolean('enabled')->default(true);
$table->boolean('keep_locally')->default(true);
$table->string('save_s3')->default(true);
$table->string('frequency');
$table->morphs('database');
$table->foreignId('team_id');