Blame view

db/migrate/20150609105354_create_email_template.rb 295 Bytes
e083ea4a   Victor Costa   A new model to st...
1
2
3
class CreateEmailTemplate < ActiveRecord::Migration

  def change
29151d66   Leandro Santos   merging with master
4
5
6
7
8
9
10
11
#    create_table :email_templates do |t|
#      t.string :name
#      t.string :template_type
#      t.string :subject
#      t.text :body
#      t.references :owner, :polymorphic => true
#      t.timestamps
#    end
e083ea4a   Victor Costa   A new model to st...
12
13
14
  end

end