15 lines
247 B
Ruby
15 lines
247 B
Ruby
class Work < ApplicationRecord
|
|
belongs_to :homie
|
|
|
|
def to_csv_row
|
|
[homie.name,
|
|
0,
|
|
amount,
|
|
description,
|
|
created_at.strftime("%Y-%m-%d"),
|
|
false].map do |element|
|
|
element.to_s
|
|
end
|
|
end
|
|
end
|