aiteamutils 0.2.148__tar.gz → 0.2.149__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.148
3
+ Version: 0.2.149
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -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
 
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.149"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.148"
File without changes
File without changes
File without changes