mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 08:57:41 +08:00
6 lines
112 B
Ruby
6 lines
112 B
Ruby
|
class AddIndexToUsersFullName < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :users, :full_name
|
||
|
end
|
||
|
end
|