diaspora/db/migrate/20110730173443_create_pod_stats.rb

16 lines
290 B
Ruby

class CreatePodStats < ActiveRecord::Migration
def self.up
create_table :pod_stats do |t|
t.integer :error_code
t.integer :person_id
t.text :error_message
t.integer :pod_id
t.timestamps
end
end
def self.down
drop_table :pod_stats
end
end