Greetings!

Please review the pull request #82: Fix for bug #9256 opened by (adimania)

Some more information about the pull request:

  • Opened: Wed Aug 31 06:33:50 UTC 2011
  • Based on: puppetlabs:master (98db04eb290ad7767cbc6da43c0ab94971f0d8ef)
  • Requested merge: adimania:master (d8a3f4d4acf6ff46c20c83c329177530a9ced234)

Description:

Fix for bug #9256. Get rid of error about missing sequence table while using postgresql for inventory service.

Thanks!
The Pull Request Bot

Diff follows:

diff --git a/lib/puppet/rails/database/schema.rb b/lib/puppet/rails/database/schema.rb
index 7b75f42..67f358a 100644
--- a/lib/puppet/rails/database/schema.rb
+++ b/lib/puppet/rails/database/schema.rb
@@ -113,7 +113,7 @@ class Puppet::Rails::Schema
 
         add_index :inventory_nodes, :name, :unique => true
 
-        create_table :inventory_facts, :id => false do |t|
+        create_table :inventory_facts do |t|
           t.column :node_id, :integer, :null => false
           t.column :name, :string, :null => false
           t.column :value, :text, :null => false

    

--
You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to puppet-dev@googlegroups.com.
To unsubscribe from this group, send email to puppet-dev+unsubscr...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to