mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
11 lines
532 B
SQL
11 lines
532 B
SQL
CREATE TABLE `pending_transactions` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`transactionID` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`service` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`method` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`h_server_id` int(11) NOT NULL,
|
|
`timeout` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `transactionID` (`transactionID`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|