diaspora/db/migrate/20110120181553_create_statistics.rb
zhitomirskiyi 56831cec63 stats WIP
2011-01-21 10:29:07 -08:00

15 lines
255 B
Ruby

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