mirror of
https://github.com/meineerde/redmine.git
synced 2025-10-17 17:01:01 +00:00
git-svn-id: http://svn.redmine.org/redmine/trunk@13886 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
183 B
Ruby
10 lines
183 B
Ruby
class AddEmailAddressesUserIdIndex < ActiveRecord::Migration
|
|
def up
|
|
add_index :email_addresses, :user_id
|
|
end
|
|
|
|
def down
|
|
remove_index :email_addresses, :user_id
|
|
end
|
|
end
|