diff --git a/db/schema.rb b/db/schema.rb --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20081204122651) do +ActiveRecord::Schema.define(:version => 20081210021333) do create_table "announcements", :force => true do |t| t.string "author" @@ -174,15 +174,17 @@ add_index "test_requests", ["user_id", "problem_id"], :name => "index_test_requests_on_user_id_and_problem_id" create_table "users", :force => true do |t| - t.string "login", :limit => 10 - t.string "full_name" - t.string "hashed_password" - t.string "salt", :limit => 5 - t.string "alias" - t.string "email" - t.integer "site_id" - t.integer "country_id" - t.boolean "activated", :default => false + t.string "login", :limit => 10 + t.string "full_name" + t.string "hashed_password" + t.string "salt", :limit => 5 + t.string "alias" + t.string "email" + t.integer "site_id" + t.integer "country_id" + t.boolean "activated", :default => false + t.datetime "created_at" + t.datetime "updated_at" end add_index "users", ["login"], :name => "index_users_on_login", :unique => true