sutty/db/migrate/20200529154040_add_remote_user_to_access_logs.rb

6 lines
137 B
Ruby
Raw Normal View History

class AddRemoteUserToAccessLogs < ActiveRecord::Migration[6.0]
def change
add_column :access_logs, :remote_user, :string
end
end