Project

General

Profile

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

def self.down
drop_table :parameters
end
end
(13-13/83)