Files
web-petting/src/migrations.rs
T

12 lines
356 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;
pub mod m_0002_push_subscription;
2026-04-29 17:49:07 +03:00
/// The list of migrations for current app.
pub const MIGRATIONS: &[&::cot::db::migrations::SyncDynMigration] = &[
&m_0001_initial::Migration,
&m_0002_push_subscription::Migration,
];