mirror of https://github.com/mastodon/mastodon
Add ability to require approval when users sign up using specific email domains (#28468)
parent
195b89d336
commit
dfdadb92e8
@ -0,0 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddAllowWithApprovalToEmailDomainBlocks < ActiveRecord::Migration[7.1]
|
||||
def change
|
||||
add_column :email_domain_blocks, :allow_with_approval, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue