9 lines
149 B
Ruby
9 lines
149 B
Ruby
class DropStatistics < ActiveRecord::Migration
|
|
def self.up
|
|
drop_table :statistics
|
|
drop_table :data_points
|
|
end
|
|
|
|
def self.down
|
|
end
|
|
end
|