changed contract boilerplate type

This commit is contained in:
Will Bradley 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

View File

@ -9,17 +9,17 @@
# #
# It's strongly recommended to check this file into your version control system. # 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| create_table "contract_templates", :force => true do |t|
t.string "name" t.string "name"
t.string "boilerplate" t.text "boilerplate", :limit => 255
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
end end
create_table "contracts", :force => true do |t| create_table "contracts", :force => true do |t|
t.string "boilerplate" t.text "boilerplate", :limit => 255
t.binary "signature" t.binary "signature"
t.string "signinghash" t.string "signinghash"
t.datetime "datesigned" t.datetime "datesigned"