Sha256: aff48d1e00697898e9863c1098ebf81a54c7f6a603c303529c4c803f0c13b6a1
Contents?: true
Size: 231 Bytes
Versions: 6
Compression:
Stored size: 231 Bytes
Contents
class RemoveTaxType < ActiveRecord::Migration def self.up change_table :tax_rates do |t| t.remove :tax_type end end def self.down change_table :tax_rates do |t| t.integer :tax_type end end end
Version data entries
6 entries across 6 versions & 2 rubygems