The code is now completely covered in specs
[lyrix.git] / db / migrate / 004_create_users.rb
blob52fa1defd675a8f6e7aa3a75e415724c15bbff8c
1 class CreateUsers < ActiveRecord::Migration
2   def self.up
3     create_table "users", :force => true do |t|
4       t.column :login,                     :string
5       t.column :email,                     :string
6       t.column :crypted_password,          :string, :limit => 40
7       t.column :salt,                      :string, :limit => 40
8       t.column :created_at,                :datetime
9       t.column :updated_at,                :datetime
10       t.column :remember_token,            :string
11       t.column :remember_token_expires_at, :datetime
12       
13       t.column :activation_code, :string, :limit => 40
14       t.column :activated_at, :datetime
15     end
16   end
18   def self.down
19     drop_table "users"
20   end
21 end