2024-10-27 21:42:45 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-11-13 08:12:46 +00:00
|
|
|
# == 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
|
|
|
|
#
|
2024-07-11 19:55:48 +02:00
|
|
|
class Expense < ApplicationRecord
|
|
|
|
end
|