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

        add_timestamps(:public_body_versions)
    end

    def self.down
        PublicBody.drop_versioned_table
    end
end