Project

General

Profile

Download (274 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateReports < ActiveRecord::Migration
def self.up
create_table :reports do |t|
t.references :host, :null => false
t.text :log
t.datetime :reported_at
t.timestamps
end
end

def self.down
drop_table :reports
end
end
(10-10/83)