mirror of
https://github.com/internetee/registry.git
synced 2025-08-06 09:45:11 +02:00
6 lines
233 B
Ruby
6 lines
233 B
Ruby
class AddLegalDocOptoutToRegistrar < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :registrars, :legaldoc_optout, :boolean, null: false, default: false
|
|
add_column :registrars, :legaldoc_optout_comment, :text
|
|
end
|
|
end
|