aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/089_remove_charity_number.rb
blob: 9b7d0935ba7ae6d41a46d4c39e3f25b8b0c0ab41 (plain)
1
2
3
4
5
6
7
8
9
10
class RemoveCharityNumber < ActiveRecord::Migration
    def self.up
        remove_column :public_bodies, :charity_number
    end

    def self.down
        raise "No reverse migration"
    end
end