Hot fix for en yml

Add new schema.rb
This commit is contained in:
Vladimir Sharshov 2012-02-03 01:30:08 +04:00
parent a2ebfdf164
commit 26923740ad
2 changed files with 94 additions and 90 deletions

View File

@ -153,6 +153,7 @@ ActiveRecord::Schema.define(:version => 20120131124517) do
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
t.string "uname" t.string "uname"
t.integer "own_projects_count", :default => 0, :null => false
end end
create_table "issues", :force => true do |t| create_table "issues", :force => true do |t|
@ -256,6 +257,7 @@ ActiveRecord::Schema.define(:version => 20120131124517) do
t.string "srpm_content_type" t.string "srpm_content_type"
t.integer "srpm_file_size" t.integer "srpm_file_size"
t.datetime "srpm_updated_at" t.datetime "srpm_updated_at"
t.boolean "has_wiki", :default => false
end end
add_index "projects", ["category_id"], :name => "index_projects_on_category_id" add_index "projects", ["category_id"], :name => "index_projects_on_category_id"
@ -312,16 +314,17 @@ ActiveRecord::Schema.define(:version => 20120131124517) do
t.integer "user_id" t.integer "user_id"
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
t.integer "project_id"
t.boolean "status", :default => true t.boolean "status", :default => true
t.integer "project_id"
end end
create_table "users", :force => true do |t| create_table "users", :force => true do |t|
t.string "name" t.string "name"
t.string "email", :default => "", :null => false t.string "email", :default => "", :null => false
t.string "encrypted_password", :limit => 128, :default => "", :null => false t.string "encrypted_password", :limit => 128, :default => "", :null => false
t.string "password_salt", :default => "", :null => false
t.string "reset_password_token" t.string "reset_password_token"
t.datetime "reset_password_sent_at" t.string "remember_token"
t.datetime "remember_created_at" t.datetime "remember_created_at"
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
@ -329,6 +332,7 @@ ActiveRecord::Schema.define(:version => 20120131124517) do
t.string "uname" t.string "uname"
t.string "role" t.string "role"
t.string "language", :default => "en" t.string "language", :default => "en"
t.integer "own_projects_count", :default => 0, :null => false
end end
add_index "users", ["email"], :name => "index_users_on_email", :unique => true add_index "users", ["email"], :name => "index_users_on_email", :unique => true