Federated "featureable in collections" preference (#37298)

This commit is contained in:
David Roetzel
2025-12-19 14:44:27 +01:00
committed by GitHub
parent f254b47067
commit 4e63958914
9 changed files with 290 additions and 41 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddFeatureApprovalPolicyToAccounts < ActiveRecord::Migration[8.0]
def change
add_column :accounts, :feature_approval_policy, :integer, null: false, default: 0
end
end