Amazon Redshift adapter for ActiveRecord 6 (Rails 6), with some added support for distkey, sortkey, encoding, autoincrement. I forked the project from https://github.com/ConsultingMD/activerecord5-redshift-adapter and https://github.com/kwent/activerecord6-redshift-adapter.
Thanks for the authors.
For Rails 6, write following in Gemfile:
gem 'activerecord6-redshift-adapter', git: "https://github.com/ValorWaterAnalytics/activerecord6-redshift-adapter.git"
In database.yml
development:
adapter: redshift
host: host
port: port
database: db
username: user
password: password
encoding: utf8
OR your can use in URL
class SomeModel < ApplicationRecord
establish_connection('redshift://username:password@host/database')
end
MIT license (same as ActiveRecord)