gorums/WatchIoT

View on GitHub
db/migrate/20151013052742_create_contact_us.rb

Summary

Maintainability
A
0 mins
Test Coverage
##
# ContactUs model
#
class CreateContactUs < ActiveRecord::Migration
  def change
    create_table :contact_us do |t|
      t.string :email
      t.string :subject
      t.text :body

      t.timestamps null: false
    end
  end
end