sharedlists/db/migrate/20130627093146_add_category_to_article.rb

10 lines
184 B
Ruby
Raw Normal View History

2021-12-18 11:39:41 +01:00
class AddCategoryToArticle < ActiveRecord::Migration
def self.up
add_column :articles, :category, :string
end
def self.down
remove_column :articles, :category
end
end