changed contract template boilerplate type

This commit is contained in:
Will Bradley 2011-11-04 00:36:14 -07:00
parent 0a56cad831
commit 833251b03b

View File

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