From 833251b03b1fb278bd60a29f5b4a7d3db1fb76af Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Fri, 4 Nov 2011 00:36:14 -0700 Subject: [PATCH] changed contract template boilerplate type --- ...04073455_change_contract_template_boilerplate_type.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db/migrate/20111104073455_change_contract_template_boilerplate_type.rb diff --git a/db/migrate/20111104073455_change_contract_template_boilerplate_type.rb b/db/migrate/20111104073455_change_contract_template_boilerplate_type.rb new file mode 100644 index 0000000..bf937b0 --- /dev/null +++ b/db/migrate/20111104073455_change_contract_template_boilerplate_type.rb @@ -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