Project

General

Profile

Download (342 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateOperatingsystemsConfigTemplates < ActiveRecord::Migration
def up
create_table :config_templates_operatingsystems, :id => false do |t|
t.references :config_template, :null => false
t.references :operatingsystem, :null => false
end
end

def down
drop_table :config_templates_operatingsystems
end
end
(57-57/281)