mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
5 lines
113 B
Ruby
5 lines
113 B
Ruby
class AddLastvisitIndexToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_index :users, :lastvisit
|
|
end
|
|
end
|