Skip to content

Commit

Permalink
Increase datavase field size for notificationaddress, to allow storin…
Browse files Browse the repository at this point in the history
…g actual FCM addresses, instead of TX addresses
  • Loading branch information
phavekes committed Feb 16, 2024
1 parent fa7884b commit 9e20002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/tiqr/Tiqr/UserStorage/Pdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
tmpblockattempts integer, // Number of failed login attempts counting towards a temporary block
blocked tinyint(1), // used as boolean: 0=not blocked. 1=blocked
notificationtype varchar(10),
notificationaddress varchar(64)
notificationaddress varchar(256)
);
*
Expand Down
4 changes: 2 additions & 2 deletions library/tiqr/tests/Tiqr_UserStorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function testUserStorage_Pdo_combined() {
tmpblockattempts INTEGER,
blocked INTEGER,
notificationtype VARCHAR(10),
notificationaddress VARCHAR(64)
notificationaddress VARCHAR(256)
);
SQL
) );
Expand Down Expand Up @@ -199,7 +199,7 @@ function testUserStorage_Pdo_split() {
tmpblockattempts INTEGER,
blocked INTEGER,
notificationtype VARCHAR(10),
notificationaddress VARCHAR(64)
notificationaddress VARCHAR(256)
);
SQL
) );
Expand Down

0 comments on commit 9e20002

Please sign in to comment.