15 lines
255 B
Ruby
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
|