20160620230631_add_expense_code_column_into_expense.rb 148 B

12345
  1. class AddExpenseCodeColumnIntoExpense < ActiveRecord::Migration
  2. def change
  3. add_column :expenses, :expense_code, :string, null: true
  4. end
  5. end