Fix UAT seed local storage quota integer range
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
"""
|
"""
|
||||||
Audit Firm ERP -- UAT seed data for Playwright v2.4.1 IMAP.
|
Audit Firm ERP -- UAT seed data for Playwright v2.4.1 IMAP.
|
||||||
|
|
||||||
Purpose:
|
Purpose:
|
||||||
@@ -585,7 +585,7 @@ def main() -> None:
|
|||||||
"storage_mode": "pull_jobs",
|
"storage_mode": "pull_jobs",
|
||||||
"status": "active",
|
"status": "active",
|
||||||
"is_active": True,
|
"is_active": True,
|
||||||
"quota_limit_bytes": 10 * 1024 * 1024 * 1024,
|
"quota_limit_bytes": 1024 * 1024 * 1024,
|
||||||
"used_storage_bytes": 0,
|
"used_storage_bytes": 0,
|
||||||
"subscription_required": False,
|
"subscription_required": False,
|
||||||
"created_by_user_id": firm_admin.id,
|
"created_by_user_id": firm_admin.id,
|
||||||
@@ -685,3 +685,4 @@ def main() -> None:
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user