adds only the needed cahced fields to comments and debates;

This commit is contained in:
kikito
2015-08-26 14:46:51 +02:00
parent 6ead1a2c1d
commit c9ca3877e8
3 changed files with 2 additions and 34 deletions

View File

@@ -1,19 +1,11 @@
class AddsVotableCacheFieldToComments < ActiveRecord::Migration
def change
add_column :comments, :cached_votes_total, :integer, default: 0
add_column :comments, :cached_votes_score, :integer, default: 0
add_column :comments, :cached_votes_up, :integer, default: 0
add_column :comments, :cached_votes_down, :integer, default: 0
add_column :comments, :cached_weighted_score, :integer, default: 0
add_column :comments, :cached_weighted_total, :integer, default: 0
add_column :comments, :cached_weighted_average, :float, default: 0
add_index :comments, :cached_votes_total
add_index :comments, :cached_votes_score
add_index :comments, :cached_votes_up
add_index :comments, :cached_votes_down
add_index :comments, :cached_weighted_score
add_index :comments, :cached_weighted_total
add_index :comments, :cached_weighted_average
end
end

View File

@@ -1,19 +1,11 @@
class AddsVotableCacheFieldToDebates < ActiveRecord::Migration
def change
add_column :debates, :cached_votes_total, :integer, default: 0
add_column :debates, :cached_votes_score, :integer, default: 0
add_column :debates, :cached_votes_up, :integer, default: 0
add_column :debates, :cached_votes_down, :integer, default: 0
add_column :debates, :cached_weighted_score, :integer, default: 0
add_column :debates, :cached_weighted_total, :integer, default: 0
add_column :debates, :cached_weighted_average, :float, default: 0
add_index :debates, :cached_votes_total
add_index :debates, :cached_votes_score
add_index :debates, :cached_votes_up
add_index :debates, :cached_votes_down
add_index :debates, :cached_weighted_score
add_index :debates, :cached_weighted_total
add_index :debates, :cached_weighted_average
end
end

View File

@@ -55,21 +55,13 @@ ActiveRecord::Schema.define(version: 20150825124827) do
t.integer "moderator_id"
t.integer "administrator_id"
t.integer "cached_votes_total", default: 0
t.integer "cached_votes_score", default: 0
t.integer "cached_votes_up", default: 0
t.integer "cached_votes_down", default: 0
t.integer "cached_weighted_score", default: 0
t.integer "cached_weighted_total", default: 0
t.float "cached_weighted_average", default: 0.0
end
add_index "comments", ["cached_votes_down"], name: "index_comments_on_cached_votes_down", using: :btree
add_index "comments", ["cached_votes_score"], name: "index_comments_on_cached_votes_score", using: :btree
add_index "comments", ["cached_votes_total"], name: "index_comments_on_cached_votes_total", using: :btree
add_index "comments", ["cached_votes_up"], name: "index_comments_on_cached_votes_up", using: :btree
add_index "comments", ["cached_weighted_average"], name: "index_comments_on_cached_weighted_average", using: :btree
add_index "comments", ["cached_weighted_score"], name: "index_comments_on_cached_weighted_score", using: :btree
add_index "comments", ["cached_weighted_total"], name: "index_comments_on_cached_weighted_total", using: :btree
add_index "comments", ["commentable_id", "commentable_type"], name: "index_comments_on_commentable_id_and_commentable_type", using: :btree
add_index "comments", ["hidden_at"], name: "index_comments_on_hidden_at", using: :btree
add_index "comments", ["user_id"], name: "index_comments_on_user_id", using: :btree
@@ -86,21 +78,13 @@ ActiveRecord::Schema.define(version: 20150825124827) do
t.integer "inappropiate_flags_count", default: 0
t.datetime "reviewed_at"
t.integer "cached_votes_total", default: 0
t.integer "cached_votes_score", default: 0
t.integer "cached_votes_up", default: 0
t.integer "cached_votes_down", default: 0
t.integer "cached_weighted_score", default: 0
t.integer "cached_weighted_total", default: 0
t.float "cached_weighted_average", default: 0.0
end
add_index "debates", ["cached_votes_down"], name: "index_debates_on_cached_votes_down", using: :btree
add_index "debates", ["cached_votes_score"], name: "index_debates_on_cached_votes_score", using: :btree
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", ["cached_weighted_average"], name: "index_debates_on_cached_weighted_average", using: :btree
add_index "debates", ["cached_weighted_score"], name: "index_debates_on_cached_weighted_score", using: :btree
add_index "debates", ["cached_weighted_total"], name: "index_debates_on_cached_weighted_total", using: :btree
add_index "debates", ["hidden_at"], name: "index_debates_on_hidden_at", using: :btree
create_table "identities", force: :cascade do |t|