Skip to content

Commit

Permalink
[#3900] Added database field for support_urls
Browse files Browse the repository at this point in the history
  • Loading branch information
edavis10 committed Apr 19, 2010
1 parent 6a3fd1d commit 464b18f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions db/migrate/001_add_support_urls_to_issues.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class AddSupportUrlsToIssues < ActiveRecord::Migration
def self.up
add_column :issues, :support_urls, :text, :null => true
end

def self.down
remove_column :issues, support_urls
end
end

0 comments on commit 464b18f

Please sign in to comment.