prooph / pdo-snapshot-store

PDO Snapshot Store

Home Page:http://getprooph.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prooph PDO Snapshot Store

Continuous Integration Coverage Status Gitter

Important

This library will receive support until December 31, 2019 and will then be deprecated.

For further information see the official announcement here: https://www.sasaprolic.com/2018/08/the-future-of-prooph-components.html

Overview

PDO implementation of snapshot store

Installation

You can install prooph/pdo-snapshot-store via composer by adding "prooph/pdo-snapshot-store": "^1.0" as requirement to your composer.json.

Upgrade

If you come from version 1.4.0 you are advised to manually update the table schema to fix an omitted primary key. You can issue the following statements or drop the snapshot table, recreate them from the provided scripts and restart projections.

MySql

ALTER TABLE `snapshots` DROP INDEX `ix_aggregate_id`, ADD PRIMARY KEY(`aggregate_id`);

Postgres

ALTER TABLE "snapshots" DROP CONSTRAINT "snapshots_aggregate_id_key", ADD PRIMARY KEY ("aggregate_id");

Support

Contribute

Please feel free to fork and extend existing or add new plugins and send a pull request with your changes! To establish a consistent code quality, please provide unit tests for all your changes and may adapt the documentation.

License

Released under the New BSD License.

About

PDO Snapshot Store

http://getprooph.org/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:PHP 97.4%Language:Shell 2.6%