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