internetee-registry/db/migrate/20150825125118_create_email_templates.rb
2021-04-26 18:54:26 +05:00

19 lines
403 B
Ruby

class CreateEmailTemplates < ActiveRecord::Migration[6.0]
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