* Add point weights for tag follows * Adjust num articles to initially show up on home page * Fix schema.rb * Adjust follow policy spec * Adjust dashboard styling for follow points form
5 lines
134 B
Ruby
5 lines
134 B
Ruby
class AddPointsToFollows < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :follows, :points, :float, default: 1.0
|
|
end
|
|
end
|