Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

HellPat/eventsauce-demo

Repository files navigation

Demo Eventsourcing with eventsauce.io

This is a simple example project to show the power of Eventsourcing with eventsauce.io

Installation

Setup your DB

CREATE TABLE IF NOT EXISTS _order_messages (
    event_id VARCHAR(36) NOT NULL,
    event_type VARCHAR(100) NOT NULL,
    aggregate_root_id VARCHAR(36) NULL,
    time_of_recording DATETIME(6) NOT NULL,
    payload JSON NOT NULL,
    INDEX aggregate_root_id (aggregate_root_id),
    INDEX time_of_recording (time_of_recording)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci ENGINE = InnoDB

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published