peractus_app/db/migrate/20180104181353_add_infos_to_mail_contents.rb
Nicolas Bally a5cfbad091 initial
2018-08-06 16:55:14 +02:00

8 lines
226 B
Ruby

class AddInfosToMailContents < ActiveRecord::Migration
def change
add_column :mail_contents, :enabled, :boolean
add_column :mail_contents, :content_type, :string
add_column :mail_contents, :tags, :text
end
end