argentum_db_infrastructure 0.3.1

The infrastructure layer of database component
Documentation
1
2
3
4
5
6
7
8
use sqlx::FromRow;
use sqlx::types::chrono::{DateTime, Utc};

#[derive(FromRow)]
pub(crate) struct MigrationDto {
    pub executed_at: DateTime<Utc>,
    pub version: String,
}