Skip to content

Commit

Permalink
VARCHAR(255) -> VARCHAR(767) in FixedTextMessages table
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Aug 22, 2014
1 parent 834d18e commit 23c0c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrameworkSystem/DB/SystemLoggingDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class SystemLoggingDB( DB ):
},
'FixedTextMessages': {
'Fields': { 'FixedTextID': 'INT NOT NULL AUTO_INCREMENT',
'FixedTextString': "VARCHAR( 255 ) NOT NULL DEFAULT 'Unknown'",
'FixedTextString': "VARCHAR( 767 ) NOT NULL DEFAULT 'Unknown'",
'ReviewedMessage': 'TINYINT( 1 ) NOT NULL DEFAULT FALSE',
'SubSystemID': 'INT NOT NULL', },
'PrimaryKey': 'FixedTextID',
Expand Down

0 comments on commit 23c0c74

Please sign in to comment.