summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180917172041_remove_wikis_count_from_site_statistics.rb
blob: 3b8300dabeba9d065b264a58d1fcf23e33706531 (plain)
1
2
3
4
5
6
# frozen_string_literal: true
class RemoveWikisCountFromSiteStatistics < ActiveRecord::Migration[4.2]
  def change
    remove_column :site_statistics, :wikis_count, :integer
  end
end