**Rails:** 4.1 **DB:** PostgreSQL 9.3 **Adapter:** Activerecord PostGis Adapter 2.2.1 https://github.com/rgeo/activerecord-postgis-adapter In my `database.yml` I use this here (required adapter for PostGis): ``` yaml development: adapter: postgis ... ``` My migration: ``` ruby ... def self.up change_table :users do |t| t.string :email, index: { case_sensitive: false, unique: true } ... ``` Any idea how to solve this problem?
Rails: 4.1
DB: PostgreSQL 9.3
Adapter: Activerecord PostGis Adapter 2.2.1 https://github.com/rgeo/activerecord-postgis-adapter
In my
database.ymlI use this here (required adapter for PostGis):My migration:
Any idea how to solve this problem?