2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-10-13 16:55:03 +01:00
|
|
|
class CreateRelations < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
create_table :relations do |t|
|
|
|
|
t.integer :object_id
|
|
|
|
t.string :object_type
|
|
|
|
t.integer :target_id
|
|
|
|
t.string :target_type
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :relations
|
|
|
|
end
|
|
|
|
end
|