Sha256: 175016e4e4ad5e655588319c30bed6777a8519034e2d8347f2378de45c93e0a0
Contents?: true
Size: 407 Bytes
Versions: 64
Compression:
Stored size: 407 Bytes
Contents
# This migration comes from dm_core (originally 20140203131320) class RenameInvoiceId < ActiveRecord::Migration def up remove_column :core_accounts, :invoice_id_counter add_column :core_accounts, :next_invoice_num, :integer, :default => 1000 end def down remove_column :core_accounts, :next_invoice_num add_column :core_accounts, :invoice_id_counter, :integer end end
Version data entries
64 entries across 64 versions & 4 rubygems