diaspora/db/migrate/20110120181553_create_statistcs.rb
2011-01-21 10:29:06 -08:00

14 lines
230 B
Ruby

class CreateStatistcs < ActiveRecord::Migration
def self.up
create_table :statistcs do |t|
t.integer :average
t.string :type
t.timestamps
end
end
def self.down
drop_table :statistcs
end
end