diaspora/db/migrate/20110120182100_create_data_points.rb
2011-01-21 10:29:07 -08:00

17 lines
349 B
Ruby

class CreateDataPoints < ActiveRecord::Migration
def self.up
create_table :data_points do |t|
t.string :key
t.integer :value
t.integer :statistic_id
t.timestamps
end
add_index :data_points, :statistic_id
end
def self.down
remove_index :data_points, :statistic_id
drop_table :data_points
end
end