yurijbogdanov / sync
v1.1
2021-02-28 16:23 UTC
Requires
- php: ^7.2
- ext-json: *
- doctrine/dbal: ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2024-10-29 00:36:55 UTC
README
wait group
CREATE TABLE IF NOT EXISTS `sync_waitgroup` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` varchar(255) NOT NULL, `counter` int(11) NOT NULL DEFAULT 0, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;