fununloaded/One_Eighty_Degrees_Consulting

View on GitHub
db/migrate/20160310233526_create_users.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateUsers < ActiveRecord::Migration
  def up
    create_table 'users' do |t|
      t.string 'email'
      t.string 'name'
      t.string 'password'
      t.string 'member_type'
      t.timestamps
    end
  end
  
  def down
    drop_table 'users'
  end
end