Page MenuHomeGRNET

20160131180912_add_mail_recipients_to_host.rb
No OneTemporary

File Metadata

Created
Wed, Nov 19, 1:40 PM

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