Sha256: 6fab1a109eff8c418cfc713433545ff4f2dd66f2f2acda88df771c4c8328bd7a

Contents?: true

Size: 498 Bytes

Versions: 1

Compression:

Stored size: 498 Bytes

Contents

# This migration comes from erp_invoicing (originally 20111121153349)
class CreateBillPayOrganizerApplication
  def self.up
    OrganizerApplication.create(
      :description => 'Bill Pay',
      :icon => 'icon-creditcards',
      :javascript_class_name => 'Compass.ErpApp.Organizer.Applications.BillPay.Base',
      :internal_identifier => 'bill_pay'
    )
  end

  def self.down
    OrganizerApplication.destroy_all(:conditions => ['internal_identifier = ?','bill_pay'])
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_invoicing-3.1.0 spec/dummy/db/data_migrations/20111121153349_create_bill_pay_organizer_application.erp_invoicing.rb