Files
web-petting/src/migrations.rs
T

8 lines
273 B
Rust
Raw Normal View History

2026-04-29 17:49:07 +03:00
//! List of migrations for the current app.
//!
2026-07-11 14:11:31 +03:00
//! Squashed for the PostgreSQL migration on 2026-07-11.
2026-04-29 17:49:07 +03:00
pub mod m_0001_initial;
/// The list of migrations for current app.
2026-07-11 14:11:31 +03:00
pub const MIGRATIONS: &[&::cot::db::migrations::SyncDynMigration] = &[&m_0001_initial::Migration];