mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 05:26:17 +02:00
5 lines
171 B
Ruby
5 lines
171 B
Ruby
class AddRegistrantPublishableToContacts < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :contacts, :registrant_publishable, :boolean, default: false
|
|
end
|
|
end
|