20161027170259_add_credit_note_column_into_credit.rb 146 B

12345
  1. class AddCreditNoteColumnIntoCredit < ActiveRecord::Migration
  2. def change
  3. add_column :credits, :credit_note, :string, null: true
  4. end
  5. end