aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/001_create_users.rb
blob: 4181a37d439df5a1e360a201f5d3e9109804c98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- encoding : utf-8 -*-
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