Sha256: 9a8e181f6e38995fc4580b3e6f95a612bc5e0ddbcc5092ab2aa1f71febb4e439
Contents?: true
Size: 403 Bytes
Versions: 72
Compression:
Stored size: 403 Bytes
Contents
class CreateEmailTemplates < ActiveRecord::Migration def change create_table :email_templates do |t| t.string :identifier t.string :description t.text :locales t.string :from_name t.string :from_email t.boolean :optional t.text :vars t.integer :position t.timestamps null: false end add_index :email_templates, :identifier end end
Version data entries
72 entries across 72 versions & 1 rubygems