Administrateur can be param the acknowledgement of delivery mail object and body.

This commit is contained in:
Xavier J 2016-08-31 16:07:11 +02:00
parent d438e9a329
commit 12ebab66cc
13 changed files with 222 additions and 6 deletions

View file

@ -0,0 +1,11 @@
class CreateMailTemplatesTable < ActiveRecord::Migration
def change
create_table :mail_templates do |t|
t.string :object
t.text :body
t.string :type
end
add_belongs_to :mail_templates, :procedure
end
end