scinote-web/db/migrate/20170105162500_add_index_to_users_full_name.rb
2017-01-05 16:26:49 +01:00

6 lines
112 B
Ruby

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