Project

General

Profile

Download (230 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateParameters < ActiveRecord::Migration
def up
create_table :parameters do |t|
t.string :name, :value
t.references :host
t.timestamps
end
end

def down
drop_table :parameters
end
end
(13-13/281)