Class: CreateMessageAttachments

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/mailboxer_multi_attach/templates/create_message_attachments.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/mailboxer_multi_attach/templates/create_message_attachments.rb', line 2

def change
  create_table :mailboxer_message_attachments do |t|
    t.string :file
    t.integer :message_id

    t.timestamps
  end
end