Created
June 13, 2012 18:35
-
-
Save msevestre/2925704 to your computer and use it in GitHub Desktop.
TaxRate Migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AddNameToTaxRates < ActiveRecord::Migration | |
def change | |
add_column :spree_tax_rates, :name, :string | |
add_index :spree_tax_rates, :name, :name => 'index_tax_rates_on_name' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment