Sha256: f5d78d5a08582a75fe4a0f6adec2518161680a10b72f44c0303d2fab6172c6a0
Contents?: true
Size: 364 Bytes
Versions: 65
Compression:
Stored size: 364 Bytes
Contents
class AddTestModeToBillingIntegration < ActiveRecord::Migration def self.up add_column :billing_integrations, :test_mode, :boolean, :default => true add_column :billing_integrations, :server, :string, :default => "test" end def self.down remove_column :billing_integrations, :test_mode remove_column :billing_integrations, :server end end
Version data entries
65 entries across 53 versions & 10 rubygems