fb2b4d8a8a
chore: fix api test conventions chore: rubocop -A spec/ chore: more rubocop -A fix failing test rubocop fixes removes helper methods that are in my opinion dead code more rubocop fixes rubocop -a --auto-gen-config
11 lines
288 B
Ruby
11 lines
288 B
Ruby
class RemoveUniquenessOfArticleName < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
remove_index :articles, :name
|
|
add_index :articles, %i[name supplier_id]
|
|
end
|
|
|
|
def self.down
|
|
remove_index :articles, %i[name supplier_id]
|
|
add_index :articles, :name, unique: true
|
|
end
|
|
end
|