remove content column from issues

This commit is contained in:
Nihad Abbasov 2011-11-11 13:35:02 +04:00
parent f295ff84d9
commit f476c42d00
2 changed files with 10 additions and 2 deletions

View file

@ -0,0 +1,9 @@
class RemoveContentFromIssues < ActiveRecord::Migration
def up
remove_column :issues, :content
end
def down
add_column :issues, :content, :text
end
end