12 lines
356 B
Rust
12 lines
356 B
Rust
//! List of migrations for the current app.
|
|
//!
|
|
//! Squashed for the PostgreSQL migration on 2026-07-11.
|
|
|
|
pub mod m_0001_initial;
|
|
pub mod m_0002_push_subscription;
|
|
/// The list of migrations for current app.
|
|
pub const MIGRATIONS: &[&::cot::db::migrations::SyncDynMigration] = &[
|
|
&m_0001_initial::Migration,
|
|
&m_0002_push_subscription::Migration,
|
|
];
|