christophermanning/activerecord-redshift-adapter
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
activerecord-redshift-adapter ============================= adapter for aws redshift for rails 3 ripped from rails 3 postgresql -- deleted code until it worked barely tested (I'm working on a project that needs this -- this works as much as I need to get the project moving) good luck example database.yml ==================== common: &common adapter: postgresql username: postgres encoding: SQL_ASCII template: template0 pool: 5 timeout: 5000 redshiftdb: &redshiftdb adapter: redshift host: clustername.something.us-east-1.redshift.amazonaws.com database: databasename port: 5439 username: username password: password redshift_development: <<: *common <<: *redshiftdb database: databasename