Sha256: b694dcb2958e1338220eae8eb5dffcd5163eef009388b088598eee9df70fc6cf
Contents?: true
Size: 270 Bytes
Versions: 18
Compression:
Stored size: 270 Bytes
Contents
class CreateShipments < ActiveRecord::Migration def self.up create_table :shipments do |t| t.references :order t.references :shipping_method t.string :tracking t.timestamps end end def self.down drop_table :shipments end end
Version data entries
18 entries across 18 versions & 3 rubygems