fedibird-fe/db/migrate/20191214025518_add_subscribing_count_to_account_stat.rb
2021-08-12 07:08:36 +09:00

5 lines
177 B
Ruby

class AddSubscribingCountToAccountStat < ActiveRecord::Migration[5.2]
def change
add_column :account_stats, :subscribing_count, :bigint, null: false, default: 0
end
end