* example: loco-todo-list * fmt * Cargo.lock * Disabled integration test for GitHub CI * fmt * Update Cargo.toml
15 lines
346 B
Rust
15 lines
346 B
Rust
#![allow(elided_lifetimes_in_paths)]
|
|
#![allow(clippy::wildcard_imports)]
|
|
pub use sea_orm_migration::prelude::*;
|
|
|
|
mod m20231103_114510_notes;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![Box::new(m20231103_114510_notes::Migration)]
|
|
}
|
|
}
|