You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
3 years ago
|
class AddUserLastLoggedIn < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :users, bulk: true do |t|
|
||
|
## Trackable
|
||
|
t.integer :sign_in_count, default: 0, null: false
|
||
|
t.datetime :current_sign_in_at
|
||
|
t.datetime :last_sign_in_at
|
||
|
t.string :current_sign_in_ip
|
||
|
t.string :last_sign_in_ip
|
||
|
end
|
||
|
end
|
||
|
end
|