athena_rs 3.18.0

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Schema migration row-contract types.
//!
//! This module owns migration-table row-shape contracts returned by
//! `/schema/migrations` query flows.

use serde::Serialize;

/// Migration row from `supabase_migrations.schema_migrations`.
#[derive(Debug, Clone, Serialize)]
pub struct SchemaMigrationRecord {
    /// Migration version.
    pub version: Option<String>,
    /// Migration name.
    pub name: Option<String>,
}