diff --git a/db/migrate/20111104074044_change_contract_boilerplate_type.rb b/db/migrate/20111104074044_change_contract_boilerplate_type.rb new file mode 100644 index 0000000..226afc2 --- /dev/null +++ b/db/migrate/20111104074044_change_contract_boilerplate_type.rb @@ -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 diff --git a/db/schema.rb b/db/schema.rb index e218ad1..da615b5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,17 +9,17 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20110928083830) do +ActiveRecord::Schema.define(:version => 20111104074044) do create_table "contract_templates", :force => true do |t| t.string "name" - t.string "boilerplate" + t.text "boilerplate", :limit => 255 t.datetime "created_at" t.datetime "updated_at" end create_table "contracts", :force => true do |t| - t.string "boilerplate" + t.text "boilerplate", :limit => 255 t.binary "signature" t.string "signinghash" t.datetime "datesigned"