mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 15:25:10 +08:00
6 lines
153 B
Ruby
6 lines
153 B
Ruby
|
class RenameAuthTokenCreatedAt < ActiveRecord::Migration
|
||
|
def change
|
||
|
rename_column :users, :auth_token_created_at, :auth_token_updated_at
|
||
|
end
|
||
|
end
|