eBooru/db/migrate/20230221145226_remove_mascots_safe_mode_only.rb
Earlopain fc7d84affd
[RuboCop] Enable Style/FrozenStringLiteralComment
This reduces allocations on the posts page by about 5%, from basic testing
2024-02-25 18:15:55 +01:00

8 lines
206 B
Ruby

# frozen_string_literal: true
class RemoveMascotsSafeModeOnly < ActiveRecord::Migration[7.0]
def change
remove_column :mascots, :safe_mode_only, type: :boolean, default: false, null: false
end
end