summaryrefslogtreecommitdiff
path: root/db/migrate/20090208130829_create_users.rb
blob: 1bd5228c43977738c2fb6468436b47b63b64dd36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class CreateUsers < ActiveRecord::Migration[4.2]
  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