aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/001_create_users.rb
blob: ba528c038a197d61556833a859891978b5172cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
        t.column :email, :string
        t.column :name, :string

        t.column :hashed_password, :string
        t.column :salt, :string
    end
  end

  def self.down
    drop_table :users
  end
end