summaryrefslogtreecommitdiff
path: root/db/migrate/20140409034211_create_users.rb
blob: b7232c53a2e791d9d85ba2544d793029283f4943 (plain)
1
2
3
4
5
6
7
8
9
class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :email
      t.string :password_digest
      t.timestamps
    end
  end
end