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