canvas-lms/db/migrate/20130813195454_drop_wiki_pa...

11 lines
154 B
Ruby

class DropWikiPageComments < ActiveRecord::Migration
tag :postdeploy
def self.up
drop_table :wiki_page_comments
end
def self.down
end
end