This file was missing from the previous commit (3caf9e317929641677f54509acce7bf51b4dfc8d).
Signed-off-by: Paul Berry <[email protected]> --- Local-branch: ticket/next/5900 ...110114190814_add_failed_to_resource_statuses.rb | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 db/migrate/20110114190814_add_failed_to_resource_statuses.rb diff --git a/db/migrate/20110114190814_add_failed_to_resource_statuses.rb b/db/migrate/20110114190814_add_failed_to_resource_statuses.rb new file mode 100644 index 0000000..613d4eb --- /dev/null +++ b/db/migrate/20110114190814_add_failed_to_resource_statuses.rb @@ -0,0 +1,9 @@ +class AddFailedToResourceStatuses < ActiveRecord::Migration + def self.up + add_column :resource_statuses, :failed, :boolean + end + + def self.down + remove_column :resource_statuses, :failed + end +end -- 1.7.2 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" 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-dev?hl=en.
