fununloaded/One_Eighty_Degrees_Consulting

View on GitHub
db/migrate/20160331224035_create_sponsors.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateSponsors < ActiveRecord::Migration
  def change
    create_table :sponsors do |t|
      t.string :name
      t.string :email
      t.string :info

      t.timestamps null: false
    end
  end
end