Issue #4137 has been updated by James Turnbull. Status changed from Investigating to Ready for Testing
---------------------------------------- Bug #4137: Modify schema.rb to support Oracle-based storeconfigs http://projects.puppetlabs.com/issues/4137 Author: Avi Miller Status: Ready for Testing Priority: Normal Assigned to: Markus Roberts Category: stored configuration Target version: 2.6 Affected version: 0.25.5 Keywords: Branch: http://github.com/jamtur01/puppet/tree/tickets/master/4137 Oracle has a maximum VARCHAR (string) column length of 255 characters. Any column that is larger than 255 characters needs to be cast as a :text column instead of :string. Diff of: puppet/rails/database/schema.rb 62c62 < t.column :environment, :string --- > t.column :environment, :text The other columns in schema.rb need to be reviewed as well though, to ensure that any current :string column that expects more than 255 characters is changed to :text. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
