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

6 lines
117 B
Ruby
Raw Normal View History

2017-06-30 16:23:28 +08:00
class AddIndexToUsersFullName < ActiveRecord::Migration[4.2]
def change
add_index :users, :full_name
end
end