Add date to file uploads #69
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the
fileupload.filetable has acreatedcolumn which tracks when the file was uploaded. We want to add a new column,date, which is meant to be the date to use when interpreting the file. For example, a file may have been created in previous years and the data may have been valid at that time. We still mark that the file was created when the system receives it, but the "date" of the file is when the data within the file is valid.As part of this we'll need to augment the API for creating file upload resources to require the "date" field. We'll also need to update the UI for doing file uploads so that it defaults to today's date, but allows the user to set the date to an arbitrary value.