Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/models/ledger/item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# receipt_count :integer default(0), not null
# receipt_required :boolean
# short_code :text
# special_appearance :integer
# status :string
# system_memo :text
# created_at :datetime not null
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

class AddSpecialAppearanceToLedgerItems < ActiveRecord::Migration[8.0]
def change
add_column :ledger_items, :special_appearance, :integer
end

end
1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1615,6 +1615,7 @@
t.integer "receipt_count", default: 0, null: false
t.boolean "receipt_required"
t.text "short_code"
t.integer "special_appearance"
t.string "status"
t.text "system_memo"
t.datetime "updated_at", null: false
Expand Down
Loading