Add new profile settings (#37890)

This commit is contained in:
Claire
2026-02-18 14:18:44 +01:00
committed by GitHub
parent 079f8615fe
commit bd64ca2583
4 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class AddProfileSettingsToAccounts < ActiveRecord::Migration[8.0]
def change
add_column :accounts, :show_media, :boolean, null: false, default: true
add_column :accounts, :show_media_replies, :boolean, null: false, default: true
add_column :accounts, :show_featured, :boolean, null: false, default: true
end
end