Apply, roll back, or force-mark database migrations.The migrator is the same one the gateway invokes at boot. Use thiscommand from CI and release pipelines to advance or audit the schemawithout standing up the full gateway.Examples: qorven migrate up qorven migrate down qorven migrate force 37Environment: QORVEN_POSTGRES_DSN Postgres DSN (required) QORVEN_MIGRATIONS_DIR Path to migrations/ (default: backend/migrations)Usage: qorven migrate [command]Available Commands: down Roll back the most recent migration force Force-mark schema at a specific version (recovery only) up Apply all pending migrationsFlags: -h, --help help for migrateGlobal Flags: -o, --output string Output format: table, json, yaml (default "table") --server string Gateway URL (env: QORVEN_SERVER) --token string Auth token (env: QORVEN_TOKEN) -v, --verbose Verbose output -y, --yes Skip confirmation promptsUse "qorven migrate [command] --help" for more information about a command.