diff options
author | Luke Kanies <luke@madstop.com> | 2008-09-27 21:30:49 +0200 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-09-27 21:30:49 +0200 |
commit | b96bdc6a63f7be6b724c2aa7ad0ea007cba81718 (patch) | |
tree | 6d334ea12e1468b34160fa36da29dd7d78ac31ea /lib/puppet/rails/database/schema.rb | |
parent | e20f02af4a93478c5b08b7681caa12cd72b4a3a6 (diff) | |
parent | 3749267093923692d6e7bc0c9ce83b43a487b19e (diff) | |
download | puppet-b96bdc6a63f7be6b724c2aa7ad0ea007cba81718.tar.gz puppet-b96bdc6a63f7be6b724c2aa7ad0ea007cba81718.tar.xz puppet-b96bdc6a63f7be6b724c2aa7ad0ea007cba81718.zip |
Merge branch '0.24.x' of git://github.com/jamtur01/puppet into 0.24.x
Diffstat (limited to 'lib/puppet/rails/database/schema.rb')
-rw-r--r-- | lib/puppet/rails/database/schema.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/puppet/rails/database/schema.rb b/lib/puppet/rails/database/schema.rb index d11d91aa5..f3ad2c11e 100644 --- a/lib/puppet/rails/database/schema.rb +++ b/lib/puppet/rails/database/schema.rb @@ -16,7 +16,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :resources, :id, :integer => true add_index :resources, :host_id, :integer => true add_index :resources, :source_file_id, :integer => true @@ -34,7 +33,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :source_files, :id, :integer => true add_index :source_files, :filename create_table :resource_tags do |t| @@ -43,7 +41,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :resource_tags, :id, :integer => true add_index :resource_tags, :resource_id, :integer => true add_index :resource_tags, :puppet_tag_id, :integer => true @@ -65,7 +62,6 @@ class Puppet::Rails::Schema t.column :source_file_id, :integer t.column :created_at, :datetime end - add_index :hosts, :id, :integer => true add_index :hosts, :source_file_id, :integer => true add_index :hosts, :name @@ -74,7 +70,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :fact_names, :id, :integer => true add_index :fact_names, :name create_table :fact_values do |t| @@ -84,7 +79,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :fact_values, :id, :integer => true add_index :fact_values, :fact_name_id, :integer => true add_index :fact_values, :host_id, :integer => true @@ -96,7 +90,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :param_values, :id, :integer => true add_index :param_values, :param_name_id, :integer => true add_index :param_values, :resource_id, :integer => true @@ -105,7 +98,6 @@ class Puppet::Rails::Schema t.column :updated_at, :datetime t.column :created_at, :datetime end - add_index :param_names, :id, :integer => true add_index :param_names, :name end end |