Sha256: 4c0c736bdcfe90a42ec0cb8e587e60e01d42e1721282488f0101b9b1fb7d30c0
Contents?: true
Size: 329 Bytes
Versions: 2
Compression:
Stored size: 329 Bytes
Contents
class CreateRelations < ActiveRecord::Migration def self.up create_table :relations, force: true do |t| t.references :relation_type t.references :relatable, polymorphic: true t.references :related_to, polymorphic: true t.timestamps end end def self.down drop_table :relations end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
solidus_related_products-1.1.0 | db/migrate/20100308092101_create_relations.rb |
solidus_related_products-1.0.0 | db/migrate/20100308092101_create_relations.rb |