We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee46da commit d4cd262Copy full SHA for d4cd262
src/crawlee/storage_clients/_sql/_db_models.py
@@ -248,7 +248,7 @@ class RequestDb(Base):
248
)
249
"""Foreign key to metadata request queue record."""
250
251
- data: Mapped[str] = mapped_column(String(1000), nullable=False)
+ data: Mapped[str] = mapped_column(String(5000), nullable=False)
252
"""JSON-serialized Request object."""
253
254
sequence_number: Mapped[int] = mapped_column(Integer, nullable=False)
0 commit comments