1
0
mirror of https://github.com/mastodon/mastodon synced 2025-01-09 19:33:04 +09:00
mastodon/db/migrate/20191212163405_add_hide_collections_to_accounts.rb
2024-12-11 14:25:48 +00:00

8 lines
222 B
Ruby

# frozen_string_literal: true
class AddHideCollectionsToAccounts < ActiveRecord::Migration[5.2]
def change
add_column :accounts, :hide_collections, :boolean # rubocop:disable Rails/ThreeStateBooleanColumn
end
end