Skip to content

Commit

Permalink
feat: from BLOB to VARCHAR for ReqDB fields
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Jun 13, 2022
1 parent e331fe7 commit 8ec6674
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DIRAC/RequestManagementSystem/DB/RequestDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
String,
DateTime,
Enum,
BLOB,
TEXT,
BigInteger,
distinct,
)
Expand Down Expand Up @@ -91,7 +91,7 @@
Column("TargetSE", String(255)),
Column("CreationTime", DateTime),
Column("SourceSE", String(255)),
Column("Arguments", BLOB),
Column("Arguments", TEXT),
Column("Error", String(255)),
Column("Type", String(64), nullable=False),
Column("Order", Integer, nullable=False),
Expand Down Expand Up @@ -149,7 +149,7 @@
Column("OwnerGroup", String(32)),
Column("SubmitTime", DateTime),
Column("RequestID", Integer, primary_key=True),
Column("SourceComponent", BLOB),
Column("SourceComponent", String(255)),
Column("NotBefore", DateTime),
mysql_engine="InnoDB",
)
Expand Down

0 comments on commit 8ec6674

Please sign in to comment.