Sha256: 28b52dedc4baf9b4f4ad9191bcefe5b650ff36547e9b2ceddbc6e68b387ccc54
Contents?: true
Size: 327 Bytes
Versions: 34
Compression:
Stored size: 327 Bytes
Contents
class MakeNongiftAmount0ByDefault < ActiveRecord::Migration def up change_column_default :items, :nongift_amount, 0 ActiveRecord::Base.connection.execute "UPDATE items SET nongift_amount=0 WHERE nongift_amount IS NULL;" end def down change_column :items, :nongift_amount, :integer, :default => nil end end
Version data entries
34 entries across 34 versions & 1 rubygems