forked from e621ng/e621ng
8 lines
206 B
Ruby
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
|