Sha256: af6a812baeeeee8ebc68914b54e830e9cd6b13dd864e651fe975e9887d780bfc
Contents?: true
Size: 377 Bytes
Versions: 1
Compression:
Stored size: 377 Bytes
Contents
class ChangeOrdersSetLimitsToNull < ActiveRecord::Migration def self.up change_column :shop_discounts, :starts_at, :datetime, :default => nil change_column :shop_discounts, :finishes_at, :datetime, :default => nil end def self.down change_column :shop_discounts, :starts_at, :datetime change_column :shop_discounts, :finishes_at, :datetime end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
radiant-shop-extension-0.11.6 | db/migrate/20101011063133_change_orders_set_limits_to_null.rb |