-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod.rs
More file actions
21 lines (18 loc) · 732 Bytes
/
mod.rs
File metadata and controls
21 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pub use sea_orm_migration::prelude::*;
mod m20251110_01_create_table_category;
mod m20251113_203047_add_content_folder;
mod m20251113_203899_add_uniq_to_content_folder;
mod m20251114_01_create_table_magnet;
pub struct Migrator;
#[async_trait::async_trait]
impl MigratorTrait for Migrator {
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
vec![
Box::new(m20251110_01_create_table_category::Migration),
Box::new(m20251113_203047_add_content_folder::Migration),
Box::new(m20251113_203899_add_uniq_to_content_folder::Migration),
Box::new(m20251110_01_create_table_category::Migration),
Box::new(m20251114_01_create_table_magnet::Migration),
]
}
}