Skip to content

Commit

Permalink
DEV: Update annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaylorhq committed May 13, 2019
1 parent 3912d6f commit 1bff814
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/models/email_log.rb
Expand Up @@ -91,6 +91,7 @@ def bounce_key
#
# Indexes
#
# index_email_logs_on_bounce_key (bounce_key) UNIQUE WHERE (bounce_key IS NOT NULL)
# index_email_logs_on_bounced (bounced)
# index_email_logs_on_created_at (created_at)
# index_email_logs_on_message_id (message_id)
Expand Down
1 change: 1 addition & 0 deletions app/models/post_custom_field.rb
Expand Up @@ -23,6 +23,7 @@ class PostCustomField < ActiveRecord::Base
# index_post_custom_fields_on_notice_type (post_id) UNIQUE WHERE ((name)::text = 'notice_type'::text)
# index_post_custom_fields_on_post_id (post_id) UNIQUE WHERE ((name)::text = 'missing uploads'::text)
# index_post_custom_fields_on_post_id_and_name (post_id,name)
# index_post_id_where_missing_uploads_ignored (post_id) UNIQUE WHERE ((name)::text = 'missing uploads ignored'::text)
# post_custom_field_broken_images_idx (post_id) UNIQUE WHERE ((name)::text = 'broken_images'::text)
# post_custom_field_downloaded_images_idx (post_id) UNIQUE WHERE ((name)::text = 'downloaded_images'::text)
# post_custom_field_large_images_idx (post_id) UNIQUE WHERE ((name)::text = 'large_images'::text)
Expand Down
15 changes: 15 additions & 0 deletions app/models/reviewable_claimed_topic.rb
Expand Up @@ -14,3 +14,18 @@ def self.claimed_hash(topic_ids)
result
end
end

# == Schema Information
#
# Table name: reviewable_claimed_topics
#
# id :bigint not null, primary key
# user_id :integer not null
# topic_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_reviewable_claimed_topics_on_topic_id (topic_id) UNIQUE
#

0 comments on commit 1bff814

Please sign in to comment.