docbrown/db/migrate/20240103223627_add_clickbait_factor_to_articles.rb
Ben Halpern 108d753d68
Add articles clickbait_score as factor in final feed ordering (#20493)
* Add articles clickbait_score

* Add attributes

* Fix field test config
2024-01-05 09:37:53 -05:00

6 lines
280 B
Ruby

class AddClickbaitFactorToArticles < ActiveRecord::Migration[7.0]
def change
# Clickbait score is a number between 0 and 1 that represents how clickbaity the article is — higher is more clickbaity
add_column :articles, :clickbait_score, :float, default: 0.0
end
end