mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
11 lines
240 B
Ruby
11 lines
240 B
Ruby
class RemoveUniqueOrganizationNameIndex < ActiveRecord::Migration[4.2]
|
|
def up
|
|
remove_index :teams, :name
|
|
add_index :teams, :name
|
|
end
|
|
|
|
def down
|
|
remove_index :teams, :name
|
|
add_index :teams, :name, unique: true
|
|
end
|
|
end
|