foodsoft/db/migrate/019_remove_uniqueness_of_ar...

12 lines
293 B
Ruby
Raw Permalink Normal View History

class RemoveUniquenessOfArticleName < ActiveRecord::Migration[4.2]
2009-01-06 11:49:19 +01:00
def self.up
remove_index :articles, :name
add_index :articles, [:name, :supplier_id]
end
def self.down
remove_index :articles, [:name, :supplier_id]
add_index :articles, :name, :unique => true
end
end