scinote-web/db/migrate/20170105162500_add_index_to_users_full_name.rb

6 lines
112 B
Ruby
Raw Normal View History

class AddIndexToUsersFullName < ActiveRecord::Migration
def change
add_index :users, :full_name
end
end