Make file uploads of CSV actually save to disk

This commit is contained in:
Eli Ribble 2026-02-08 01:44:44 +00:00
parent 0d55eb1da4
commit 6716bc68c9
No known key found for this signature in database
27 changed files with 5459 additions and 37 deletions

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FileuploadCSVErrors = &fileuploadCSVErrors{
ErrUniqueCsvPkey: &UniqueConstraintError{
schema: "fileupload",
table: "csv",
columns: []string{"file_id"},
s: "csv_pkey",
},
}
type fileuploadCSVErrors struct {
ErrUniqueCsvPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FileuploadErrorErrors = &fileuploadErrorErrors{
ErrUniqueErrorPkey: &UniqueConstraintError{
schema: "fileupload",
table: "error",
columns: []string{"id"},
s: "error_pkey",
},
}
type fileuploadErrorErrors struct {
ErrUniqueErrorPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FileuploadFileErrors = &fileuploadFileErrors{
ErrUniqueFilePkey: &UniqueConstraintError{
schema: "fileupload",
table: "file",
columns: []string{"id"},
s: "file_pkey",
},
}
type fileuploadFileErrors struct {
ErrUniqueFilePkey *UniqueConstraintError
}