Able to backup Coolify itself
This commit is contained in:
@@ -3,18 +3,16 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Project;
|
||||
use App\Models\Team;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ProjectSeeder extends Seeder
|
||||
{
|
||||
public function run(): void
|
||||
{
|
||||
$root_team = Team::find(0);
|
||||
Project::create([
|
||||
'name' => "My first project",
|
||||
'description' => "This is a test project in development",
|
||||
'team_id' => $root_team->id,
|
||||
'team_id' => 0,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user