6 lines
111 B
Ruby
6 lines
111 B
Ruby
|
class AddSupportersNameIndex < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :supporters, :name
|
||
|
end
|
||
|
end
|