Add publishable contact field

This commit is contained in:
Thiago Youssef 2022-07-15 16:47:30 -03:00 committed by olegphenomenon
parent 9623b3e207
commit 5c129b24ef
6 changed files with 17 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddPublishableToContacts < ActiveRecord::Migration[6.1]
def change
add_column :contacts, :publishable, :boolean, default: false
end
end