reddb-io-server 1.2.0

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Internal collection names for the migrations layer.
//!
//! All migration-owned collections share the `red_*` prefix — matching
//! `red_config`, `red_stats`, `red_commits`, etc. Keeping every name in
//! one file prevents accidental divergence between bootstrap code, runtime
//! access, and schema documentation.

/// Migration definitions: id, name, status, kind, body, author,
/// created_at, applied_at, rows_total, rows_processed, vcs_commit_hash.
pub const MIGRATIONS: &str = "red_migrations";

/// Dependency edges between migrations: migration_id, depends_on_id, inferred.
pub const MIGRATION_DEPS: &str = "red_migration_deps";

/// All migration collections, in bootstrap order.
pub const ALL: &[&str] = &[MIGRATIONS, MIGRATION_DEPS];