diff options
author | Teddy Wing | 2017-06-03 13:03:52 +0200 |
---|---|---|
committer | Teddy Wing | 2017-06-03 13:03:52 +0200 |
commit | 2bd0cb518e1eee9be503aea5198889253aa435f7 (patch) | |
tree | 206cfbf9bb4d75884eed9f3633913fb9d3a344b9 | |
parent | f017c462593496efbc0810ec2603da49a2e3d9d8 (diff) | |
download | timetasker-2bd0cb518e1eee9be503aea5198889253aa435f7.tar.bz2 |
Project: Remove `Time` field
Time spent on a project can be variable from day to day. The time
shouldn't be stored on the project, and should no longer be passed in
config.toml. Instead it should be a part of `TimeEntry`, which it now
is.
-rw-r--r-- | timetask/fields.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/timetask/fields.go b/timetask/fields.go index f535d92..9f7aa99 100644 --- a/timetask/fields.go +++ b/timetask/fields.go @@ -22,7 +22,6 @@ type Project struct { Module int Task int WorkType int `toml:"work_type"` - Time int Billable bool } |