16 lines
385 B
Ruby
16 lines
385 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: expenses
|
|
#
|
|
# id :uuid not null, primary key
|
|
# amount :decimal(, )
|
|
# name :string
|
|
# pricing_type :enum default("fixed"), not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class Expense < ApplicationRecord
|
|
end
|