cqrs-postgres 0.3.3

An implementation of cqrs for a PostgreSQL backend.
Documentation
1
2
3
4
CREATE TABLE IF NOT EXISTS migrations (
  version int NOT NULL PRIMARY KEY,
  timestamp timestamp with time zone DEFAULT (CURRENT_TIMESTAMP)
);