update annotations

This commit is contained in:
Arpit Jalan
2017-12-05 20:59:14 +05:30
parent a5e58e7afa
commit daeb7694bc
71 changed files with 185 additions and 190 deletions

View File

@@ -1300,7 +1300,7 @@ end
# Table name: topics
#
# id :integer not null, primary key
# title :string not null
# title :string(255) not null
# last_posted_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
@@ -1315,7 +1315,7 @@ end
# avg_time :integer
# deleted_at :datetime
# highest_post_number :integer default(0), not null
# image_url :string
# image_url :string(255)
# like_count :integer default(0), not null
# incoming_link_count :integer default(0), not null
# category_id :integer
@@ -1326,15 +1326,15 @@ end
# bumped_at :datetime not null
# has_summary :boolean default(FALSE), not null
# vote_count :integer default(0), not null
# archetype :string default("regular"), not null
# archetype :string(255) default("regular"), not null
# featured_user4_id :integer
# notify_moderators_count :integer default(0), not null
# spam_count :integer default(0), not null
# pinned_at :datetime
# score :float
# percent_rank :float default(1.0), not null
# subtype :string
# slug :string
# subtype :string(255)
# slug :string(255)
# deleted_by_id :integer
# participant_count :integer default(1)
# word_count :integer
@@ -1350,7 +1350,7 @@ end
# idx_topics_front_page (deleted_at,visible,archetype,category_id,id)
# idx_topics_user_id_deleted_at (user_id)
# idxtopicslug (slug)
# index_topics_on_bumped_at (bumped_at)
# index_forum_threads_on_bumped_at (bumped_at)
# index_topics_on_created_at_and_visible (created_at,visible)
# index_topics_on_id_and_deleted_at (id,deleted_at)
# index_topics_on_lower_title (lower((title)::text))