@@ -45,7 +45,7 @@ class AccountingCache(rmsBase):
45
45
"""AccountingCache table"""
46
46
47
47
__tablename__ = "AccountingCache"
48
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
48
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
49
49
50
50
name = Column ("Name" , String (64 ), nullable = False , primary_key = True )
51
51
plotname = Column ("PlotName" , String (64 ), nullable = False , primary_key = True )
@@ -88,7 +88,7 @@ class DowntimeCache(rmsBase):
88
88
"""DowntimeCache table"""
89
89
90
90
__tablename__ = "DowntimeCache"
91
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
91
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
92
92
93
93
downtimeid = Column ("DowntimeID" , String (127 ), nullable = False , primary_key = True )
94
94
name = Column ("Name" , String (64 ), nullable = False )
@@ -150,7 +150,7 @@ class GGUSTicketsCache(rmsBase):
150
150
"""GGUSTicketsCache table"""
151
151
152
152
__tablename__ = "GGUSTicketsCache"
153
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
153
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
154
154
155
155
gocsite = Column ("GocSite" , String (64 ), nullable = False , primary_key = True )
156
156
tickets = Column ("Tickets" , String (1024 ), nullable = False )
@@ -186,7 +186,7 @@ class JobCache(rmsBase):
186
186
"""JobCache table"""
187
187
188
188
__tablename__ = "JobCache"
189
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
189
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
190
190
191
191
site = Column ("Site" , String (64 ), nullable = False , primary_key = True )
192
192
status = Column ("Status" , String (16 ), nullable = False )
@@ -219,7 +219,7 @@ class PilotCache(rmsBase):
219
219
"""PilotCache table"""
220
220
221
221
__tablename__ = "PilotCache"
222
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
222
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
223
223
224
224
site = Column ("Site" , String (64 ), nullable = False , primary_key = True )
225
225
ce = Column ("CE" , String (64 ), nullable = False , primary_key = True )
@@ -261,7 +261,7 @@ class PolicyResult(rmsBase):
261
261
"""PolicyResult table"""
262
262
263
263
__tablename__ = "PolicyResult"
264
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
264
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
265
265
266
266
policyname = Column ("PolicyName" , String (64 ), nullable = False , primary_key = True )
267
267
statustype = Column ("StatusType" , String (16 ), nullable = False , server_default = "" , primary_key = True )
@@ -320,7 +320,7 @@ class SpaceTokenOccupancyCache(rmsBase):
320
320
"""SpaceTokenOccupancyCache table"""
321
321
322
322
__tablename__ = "SpaceTokenOccupancyCache"
323
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
323
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
324
324
325
325
endpoint = Column ("Endpoint" , String (128 ), nullable = False , primary_key = True )
326
326
token = Column ("Token" , String (64 ), nullable = False , primary_key = True )
@@ -358,7 +358,7 @@ class TransferCache(rmsBase):
358
358
"""TransferCache table"""
359
359
360
360
__tablename__ = "TransferCache"
361
- __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8 " }
361
+ __table_args__ = {"mysql_engine" : "InnoDB" , "mysql_charset" : "utf8mb4 " }
362
362
363
363
sourcename = Column ("SourceName" , String (64 ), nullable = False , primary_key = True )
364
364
destinationname = Column ("DestinationName" , String (64 ), nullable = False , primary_key = True )
0 commit comments