internetee-registry/db/migrate/20170423222302_remove_price_price_cents_default.rb
2021-04-26 18:54:26 +05:00

5 lines
142 B
Ruby

class RemovePricePriceCentsDefault < ActiveRecord::Migration[6.0]
def change
change_column_default :prices, :price_cents, nil
end
end