remove content column from issues
This commit is contained in:
parent
f295ff84d9
commit
f476c42d00
2 changed files with 10 additions and 2 deletions
9
db/migrate/20111111093150_remove_content_from_issues.rb
Normal file
9
db/migrate/20111111093150_remove_content_from_issues.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue