codeforsanjose/codeforsanjose

View on GitHub
db/migrate/20151120184830_user.rb

Summary

Maintainability
A
0 mins
Test Coverage
class User < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :username
      t.string :email
      t.string :encrypted_password
      t.string :salt
      # Comma deliminated string
      t.string :technologies
      t.timestamps
    end
  end
end