njazari/sef-founderwall

View on GitHub
db/migrate/20161020070843_create_donors.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateDonors < ActiveRecord::Migration
  def change
    create_table :donors do |t|
      t.string :first_name
      t.string :last_name
      t.string :email
      t.string :phone
    end
  end
end