Class: CreateVoltronNotificationSmsNotificationAttachments

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/db/migrate/create_voltron_notification_sms_notification_attachments.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/templates/db/migrate/create_voltron_notification_sms_notification_attachments.rb', line 2

def change
  create_table :voltron_notification_sms_notification_attachments do |t|
    t.integer :sms_notification_id
    t.string :attachment

    t.timestamps null: false
  end
end