diaspora/db/migrate/20110120181553_create_statistics.rb

14 lines
232 B
Ruby

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