summaryrefslogtreecommitdiff
path: root/db/migrate/20090208130829_create_users.rb
blob: e91193c5585ceecf3b9c10d46eee1afc6ff9c012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :login
      t.string :email
      t.string :crypted_password
      t.string :salt

      t.timestamps
    end
  end

  def self.down
    drop_table :users
  end
end