MattZhao/AtRisk

View on GitHub
db/migrate/20161116084141_create_form_attachments.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateFormAttachments < ActiveRecord::Migration
  def change
    create_table :form_attachments do |t|
      t.integer :form_id
      t.string :file

      t.timestamps null: false
    end
  end
end