aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/006_version_public_body.rb
blob: 34586add2481b8cb91ae6a3a8d635601ba333d0e (plain)
1
2
3
4
5
6
7
8
9
class VersionPublicBody < ActiveRecord::Migration
    def self.up
        PublicBody.create_versioned_table
    end

    def self.down
        PublicBody.drop_versioned_table
    end
end