ref: master
plugins/sub_organizations/db/migrate/20120530173629_create_relation.rb
1 2 3 4 5 6 7 8 9 10 11 12 |
class CreateRelation < ActiveRecord::Migration def self.up create_table :sub_organizations_plugin_relations do |t| t.references :parent, :polymorphic => true t.references :child, :polymorphic => true end end def self.down drop_table :sub_organizations_plugin_relations end end |