Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2017-04-28 19:04:41 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2017-04-28 22:01:40 +0300
commit47843d66b810c718d92184a2f4e00f6265b2db87 (patch)
tree5285304109ef6c7d74477597375f4711900d507e
parent99d60d01859d2910d6934c9b7a2c8b50ca76be5c (diff)
increase column size to store the signature
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
-rwxr-xr-xmysql.dmp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql.dmp b/mysql.dmp
index 3a9cf43..9cbc39e 100755
--- a/mysql.dmp
+++ b/mysql.dmp
@@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `toVerify` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`storeId` int(11) NOT NULL,
- `property` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `property` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL,
`location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tries` int(11) NOT NULL,
PRIMARY KEY (`id`)