Skip to content

Instantly share code, notes, and snippets.

@rafaltrojanowski
Last active September 5, 2025 12:17
Show Gist options
  • Select an option

  • Save rafaltrojanowski/f612e39c9697484c55099a47b0a8fa91 to your computer and use it in GitHub Desktop.

Select an option

Save rafaltrojanowski/f612e39c9697484c55099a47b0a8fa91 to your computer and use it in GitHub Desktop.
1. RAILS_ENV=staging rails console
Account.last => => [email protected]
2. rails console
Account.last =>. [email protected]. // lokalna baza, to jest OK
(Account.where(email: "[email protected]") => [] )
3. app@stinto-staging-1://opt/stinto/incard-rails$ RAILS_ENV=staging rails console
Account.where(email: "[email protected]")
=> []
4. RAILS_ENV=production rails console
Account.where(email: "[email protected]") => []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment