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