adds incomplete verifications section [#500]

This commit is contained in:
rgarcia
2015-09-24 10:05:06 +02:00
parent 0aef9b4083
commit 5d38b49c2b
7 changed files with 20 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ ActiveRecord::Schema.define(version: 20150921095553) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
enable_extension "unaccent"
create_table "activities", force: :cascade do |t|
t.integer "user_id"
@@ -124,6 +125,7 @@ ActiveRecord::Schema.define(version: 20150921095553) do
add_index "debates", ["cached_votes_total"], name: "index_debates_on_cached_votes_total", using: :btree
add_index "debates", ["cached_votes_up"], name: "index_debates_on_cached_votes_up", using: :btree
add_index "debates", ["confidence_score"], name: "index_debates_on_confidence_score", using: :btree
add_index "debates", ["description"], name: "index_debates_on_description", using: :btree
add_index "debates", ["hidden_at"], name: "index_debates_on_hidden_at", using: :btree
add_index "debates", ["hot_score"], name: "index_debates_on_hot_score", using: :btree
add_index "debates", ["title"], name: "index_debates_on_title", using: :btree
@@ -181,7 +183,7 @@ ActiveRecord::Schema.define(version: 20150921095553) do
create_table "locks", force: :cascade do |t|
t.integer "user_id"
t.integer "tries", default: 0
t.datetime "locked_until", default: '2015-09-15 07:56:29', null: false
t.datetime "locked_until", default: '2015-09-10 13:46:11', null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
@@ -229,6 +231,7 @@ ActiveRecord::Schema.define(version: 20150921095553) do
add_index "proposals", ["author_id"], name: "index_proposals_on_author_id", using: :btree
add_index "proposals", ["cached_votes_up"], name: "index_proposals_on_cached_votes_up", using: :btree
add_index "proposals", ["confidence_score"], name: "index_proposals_on_confidence_score", using: :btree
add_index "proposals", ["description"], name: "index_proposals_on_description", using: :btree
add_index "proposals", ["hidden_at"], name: "index_proposals_on_hidden_at", using: :btree
add_index "proposals", ["hot_score"], name: "index_proposals_on_hot_score", using: :btree
add_index "proposals", ["question"], name: "index_proposals_on_question", using: :btree