Sha256: 9e321962221ed412d36a7d31ca6b46311b17011c809c53a85f4c88b6851e2ec0
Contents?: true
Size: 575 Bytes
Versions: 3
Compression:
Stored size: 575 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
3 entries across 3 versions & 1 rubygems