aiteamutils 0.2.148__py3-none-any.whl → 0.2.149__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aiteamutils/files.py
CHANGED
@@ -201,10 +201,10 @@ class FileHandler:
|
|
201
201
|
text("""
|
202
202
|
INSERT INTO files (
|
203
203
|
ulid, entity_name, entity_ulid, original_name, storage_path,
|
204
|
-
mime_type, size, checksum, column_name
|
204
|
+
mime_type, size, checksum, column_name, created_at, updated_at
|
205
205
|
) VALUES (
|
206
206
|
:ulid, :entity_name, :entity_ulid, :original_name, :storage_path,
|
207
|
-
:mime_type, :size, :checksum, :column_name
|
207
|
+
:mime_type, :size, :checksum, :column_name, :created_at, :updated_at
|
208
208
|
) RETURNING *
|
209
209
|
"""),
|
210
210
|
{
|
@@ -216,7 +216,9 @@ class FileHandler:
|
|
216
216
|
"mime_type": file_info["mime_type"],
|
217
217
|
"size": file_info["size"],
|
218
218
|
"checksum": file_info["checksum"],
|
219
|
-
"column_name": column_name
|
219
|
+
"column_name": column_name,
|
220
|
+
"created_at": datetime.now(timezone.utc),
|
221
|
+
"updated_at": datetime.now(timezone.utc)
|
220
222
|
}
|
221
223
|
)
|
222
224
|
|
aiteamutils/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""버전 정보"""
|
2
|
-
__version__ = "0.2.
|
2
|
+
__version__ = "0.2.149"
|
@@ -7,11 +7,11 @@ aiteamutils/config.py,sha256=YdalpJb70-txhGJAS4aaKglEZAFVWgfzw5BXSWpkUz4,3232
|
|
7
7
|
aiteamutils/database.py,sha256=msvBKtxWeQVOo0v2Q9i2azuTNtnUItuNNar52gdRZTo,20418
|
8
8
|
aiteamutils/enums.py,sha256=7WLqlcJqQWtETAga2WAxNp3dJTQIAd2TW-4WzkoHHa8,2498
|
9
9
|
aiteamutils/exceptions.py,sha256=pgf3ersezObyl17wAO3I2fb8m9t2OzWDX1mSjwAWm2Y,16035
|
10
|
-
aiteamutils/files.py,sha256=
|
10
|
+
aiteamutils/files.py,sha256=a7vViE04Iq_NUnx3MyCTW2e9ATWomzRxrkx2uSr7Noc,12000
|
11
11
|
aiteamutils/models.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
12
12
|
aiteamutils/security.py,sha256=McUl3t5Z5SyUDVUHymHdDkYyF4YSeg4g9fFMML4W6Kw,11630
|
13
13
|
aiteamutils/validators.py,sha256=_WHN6jqJQzKM5uPTg-Da8U2qqevS84XeKMkCCF4C_lY,9591
|
14
|
-
aiteamutils/version.py,sha256=
|
15
|
-
aiteamutils-0.2.
|
16
|
-
aiteamutils-0.2.
|
17
|
-
aiteamutils-0.2.
|
14
|
+
aiteamutils/version.py,sha256=oUatGnP_C4v1Fa6LGuw1GFIqI0Zv4YSAMRh2UkG074A,43
|
15
|
+
aiteamutils-0.2.149.dist-info/METADATA,sha256=UfHoHenmE6quQIAEsiqM9PYRV3YsXLZfFreGesFoDlc,1743
|
16
|
+
aiteamutils-0.2.149.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
17
|
+
aiteamutils-0.2.149.dist-info/RECORD,,
|
File without changes
|