Page MenuHomeGRNET

20160131180912_add_mail_recipients_to_host.rb
No OneTemporary

File Metadata

Created
Sun, Aug 10, 1:12 AM

20160131180912_add_mail_recipients_to_host.rb

class AddMailRecipientsToHost < ActiveRecord::Migration
def up
add_column :hosts, :email_recipients, :string, default: [].to_json
end
def down
remove_column :hosts, :email_recipients
end
end

Event Timeline