internetee-registry/db/migrate/20150825125118_create_email_templates.rb
2015-08-25 22:09:15 +03:00

19 lines
398 B
Ruby

class CreateEmailTemplates < ActiveRecord::Migration
def self.up
create_table :mail_templates do |t|
t.string :name, null: false
t.string :subject
t.string :from
t.string :bcc
t.string :cc
t.text :body, null: false
t.text :text_body, null: false
t.timestamps null: false
end
end
def self.down
drop_table :mail_templates
end
end