changed boilerplate length
This commit is contained in:
11
db/migrate/20111104074505_change_boilerplate_limits.rb
Normal file
11
db/migrate/20111104074505_change_boilerplate_limits.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class ChangeBoilerplateLimits < ActiveRecord::Migration
|
||||
def self.up
|
||||
change_column :contracts, :boilerplate, :text, :limit => nil
|
||||
change_column :contract_templates, :boilerplate, :text, :limit => nil
|
||||
end
|
||||
|
||||
def self.down
|
||||
change_column :contracts, :boilerplate, :text, :limit => 255
|
||||
change_column :contract_templates, :boilerplate, :text, :limit => 255
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user