mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
6 lines
113 B
Ruby
6 lines
113 B
Ruby
|
class AddLastvisitIndexToUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :users, :lastvisit
|
||
|
end
|
||
|
end
|