changed contract boilerplate type

This commit is contained in:
2011-11-04 00:41:34 -07:00
parent 833251b03b
commit 917b9a8347
2 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
class ChangeContractBoilerplateType < ActiveRecord::Migration
def self.up
change_column :contracts, :boilerplate, :text
end
def self.down
change_column :contracts, :boilerplate, :string
end
end