Sha256: abcfe0481171d4f4362292a472309fa2536ecbab2a51426b78b9c03e3fd823a6
Contents?: true
Size: 243 Bytes
Versions: 20
Compression:
Stored size: 243 Bytes
Contents
class ProductsTaxons < ActiveRecord::Migration def self.up create_table :products_taxons, :id => false do |t| t.integer :product_id t.integer :taxon_id end end def self.down drop_table :products_taxons end end
Version data entries
20 entries across 20 versions & 3 rubygems