canvas-lms/db/migrate/20121115220718_add_http_met...

12 lines
216 B
Ruby

class AddHttpMethodToPageViews < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :page_views, :http_method, :string
end
def self.down
remove_column :page_views, :http_method
end
end