houdini/db/migrate/201810202124315_remove_articles.rb

9 lines
109 B
Ruby
Raw Normal View History

class RemoveArticles < ActiveRecord::Migration
def up
drop_table :articles
end
def down
end
end