You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20160108024752_create_shiel...

16 lines
312 B

class CreateShieldActivities < ActiveRecord::Migration
def up
create_table :shield_activities do |t|
t.string :container_type
t.integer :container_id
t.string :shield_type
t.integer :shield_id
t.timestamps
end
end
def down
drop_table :shield_activities
end
end