Skip to content

Instantly share code, notes, and snippets.

@mattlenz
Created July 9, 2012 03:02
Show Gist options
  • Save mattlenz/3073998 to your computer and use it in GitHub Desktop.
Save mattlenz/3073998 to your computer and use it in GitHub Desktop.
Rails database config with inheritance
defaults: &defaults
adapter: postgresql
encoding: unicode
host: localhost
database: blog
development:
<<: *defaults
database: blog_development
test:
<<: *defaults
database: blog_test
production:
<<: *defaults
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment