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:
Diffstat (limited to 'mysql.dmp')
-rwxr-xr-xmysql.dmp12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql.dmp b/mysql.dmp
index ab3c5cf..3a9cf43 100755
--- a/mysql.dmp
+++ b/mysql.dmp
@@ -41,6 +41,18 @@ CREATE TABLE IF NOT EXISTS `users` (
KEY `federationId` (`federationId`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+DROP TABLE IF EXISTS `toVerify`;
+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,
+ `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `tries` int(11) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;