3scale/porta

View on GitHub
db/migrate/20131202110159_generate_go_live_steps.rb

Summary

Maintainability
A
0 mins
Test Coverage
class GenerateGoLiveSteps < ActiveRecord::Migration
  def up
    Account.transaction do
      Account.providers.find_each do |account|
        account.create_go_live_state
      end
    end
  end
end