Sha256: 946b3f372425928f48e8986444f842ba2275929b047ebe5bb59b322a8aca741c
Contents?: true
Size: 285 Bytes
Versions: 18
Compression:
Stored size: 285 Bytes
Contents
class CreateShippingMethods < ActiveRecord::Migration def self.up create_table :shipping_methods do |t| t.references :zone t.string :shipping_calculator t.string :name t.timestamps end end def self.down drop_table :shipping_methods end end
Version data entries
18 entries across 18 versions & 3 rubygems