مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
13 أسطر
380 B
Ruby
13 أسطر
380 B
Ruby
# frozen_string_literal: true
|
|
|
|
# This migration comes from authie (originally 20230627165500)
|
|
class AddCountriesToAuthieSessions < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
|
add_column :authie_sessions, :login_ip_country, :string
|
|
add_column :authie_sessions, :two_factored_ip_country, :string
|
|
add_column :authie_sessions, :last_activity_ip_country, :string
|
|
end
|
|
|
|
end
|