mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-06 23:14:57 +00:00
9 lines
244 B
Ruby
9 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIpsToEmailDomainBlocks < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :email_domain_blocks, :ips, :inet, array: true
|
|
add_column :email_domain_blocks, :last_refresh_at, :datetime
|
|
end
|
|
end
|