mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
7 lines
178 B
Ruby
7 lines
178 B
Ruby
class AddRemoteUserToAccessLogs < ActiveRecord::Migration[6.0]
|
|
def change
|
|
return unless Rails.env.production?
|
|
|
|
add_column :access_logs, :remote_user, :string
|
|
end
|
|
end
|