Sha256: 506518acd1b57e18ebbdfc41f48fa2af5925b64479655f5c10de9ec18040ffb5
Contents?: true
Size: 308 Bytes
Versions: 56
Compression:
Stored size: 308 Bytes
Contents
class AddShipmentAndPaymentState < ActiveRecord::Migration def self.up change_table :orders do |t| t.string :shipment_state t.string :payment_state end end def self.down change_table :orders do |t| t.remove :shipment_state t.remove :payment_state end end end
Version data entries
56 entries across 44 versions & 9 rubygems