Update schema/annotations after tag trend db/redis migrate (#33173)

pull/33177/head
Matt Jankowski 4 months ago committed by GitHub
parent 0fcf227a92
commit 4934242aca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,11 +5,11 @@
# Table name: tag_trends
#
# id :bigint(8) not null, primary key
# tag_id :bigint(8) not null
# score :float default(0.0), not null
# rank :integer default(0), not null
# allowed :boolean default(FALSE), not null
# language :string
# language :string default(""), not null
# rank :integer default(0), not null
# score :float default(0.0), not null
# tag_id :bigint(8) not null
#
class TagTrend < ApplicationRecord
include RankedTrend

@ -1085,7 +1085,7 @@ ActiveRecord::Schema[7.2].define(version: 2024_11_23_160722) do
t.float "score", default: 0.0, null: false
t.integer "rank", default: 0, null: false
t.boolean "allowed", default: false, null: false
t.string "language"
t.string "language", default: "", null: false
t.index ["tag_id", "language"], name: "index_tag_trends_on_tag_id_and_language", unique: true
end

Loading…
Cancel
Save