18 lines
567 B
Rust
18 lines
567 B
Rust
//! List of migrations for the current app.
|
|
//!
|
|
//! Generated by cot CLI 0.6.0 on 2026-04-29 10:36:47+00:00
|
|
|
|
pub mod m_0001_initial;
|
|
pub mod m_0002_visit_schedule;
|
|
pub mod m_0003_visit_feedback;
|
|
pub mod m_0004_visit_public_notes;
|
|
pub mod m_0005_testimonials;
|
|
/// The list of migrations for current app.
|
|
pub const MIGRATIONS: &[&::cot::db::migrations::SyncDynMigration] = &[
|
|
&m_0001_initial::Migration,
|
|
&m_0002_visit_schedule::Migration,
|
|
&m_0003_visit_feedback::Migration,
|
|
&m_0004_visit_public_notes::Migration,
|
|
&m_0005_testimonials::Migration,
|
|
];
|