femslash-city/migrations/097_add_follow_count_to_sites.rb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

9 lines
152 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :follow_count, :integer, default: 0
}
down {
DB.drop_column :sites, :follow_count
}
end