Sha256: 9d2690b70c6b877295f1ba19d2185badc304443e6f859dc57b740db64514ca83
Contents?: true
Size: 584 Bytes
Versions: 423
Compression:
Stored size: 584 Bytes
Contents
class CreateCarrierTypeHasCheckoutTypes < ActiveRecord::Migration def self.up create_table :carrier_type_has_checkout_types do |t| t.integer :carrier_type_id, :null => false t.integer :checkout_type_id, :null => false t.text :note t.integer :position t.timestamps end add_index :carrier_type_has_checkout_types, :carrier_type_id, :name => 'index_carrier_type_has_checkout_types_on_m_form_id' add_index :carrier_type_has_checkout_types, :checkout_type_id end def self.down drop_table :carrier_type_has_checkout_types end end
Version data entries
423 entries across 416 versions & 12 rubygems