mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
9 lines
217 B
Ruby
9 lines
217 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeLastModified < ActiveRecord::Migration[6.0]
|
|
def change
|
|
return unless Rails.env.production?
|
|
|
|
change_column :access_logs, :sent_http_last_modified, :string
|
|
end
|
|
end
|