Jets6 - how to run db:migrate for separate RDS Instance?

Hi, I have app Ruby on Jets 6 with rails 7 and two instance of RDS Database (light one for dev and up-scale one for prod env - others host on jets/.env.dev and jets/env.prod). For this dev DB I just run “rails db:migrate”, but how can I push new migration to this prod DB?

I try for example something like that:

JETS_ENV=prod AWS_REGION=eu-central-1 AWS_PROFILE=polls-api bundle exec rails console

but this didn’t work. At the moment I think the only way is to place localy PROD DB connection data as DEV and then run as for DEV before. But is there any better (correct) way?