fixes #775
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class AddLowerNameIndexToPools < ActiveRecord::Migration
|
||||
def self.up
|
||||
execute "create index index_pools_on_lower_name on pools (lower(name))"
|
||||
end
|
||||
|
||||
def self.down
|
||||
execute "drop index index_pools_on_lower_name"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user