treehouselabs/snapshot-store
Composer 安装命令:
composer require treehouselabs/snapshot-store
包简介
README 文档
README
Library for storing snapshots
Installation
composer require treehouselabs/snapshot-store
Database
Basic SQL schema for snapshot store. Adapt to your needs.
CREATE TABLE `snapshot_store` ( `id` int(11) NOT NULL AUTO_INCREMENT, `aggregate_id` varchar(255) NOT NULL, `payload` longtext NOT NULL, `version` int(11) NOT NULL, `datetime_created` datetime NOT NULL, `checksum` varchar(255) NOT NULL, `class` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UNIQ_D1F10563D0BBCCBEBF1CD3C3` (`aggregate_id`,`version`,`checksum`) )
Testing
composer test
Security
If you discover any security related issues, please email dev@treehouse.nl instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.
Credits
统计信息
- 总下载量: 161
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-11