A simple to-do app focused on tasks that can be completed within a specific time span.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix migration name

ToBinio 84782a2c e799eb8b

+2 -2
+2 -2
api/migration/src/lib.rs
··· 1 1 pub use sea_orm_migration::prelude::*; 2 2 3 3 mod m20260503_093223_add_tag_table; 4 - mod m20260503_125344_add_user_category; 4 + mod m20260503_125344_add_category_table; 5 5 6 6 pub struct Migrator; 7 7 ··· 10 10 fn migrations() -> Vec<Box<dyn MigrationTrait>> { 11 11 vec![ 12 12 Box::new(m20260503_093223_add_tag_table::Migration), 13 - Box::new(m20260503_125344_add_user_category::Migration), 13 + Box::new(m20260503_125344_add_category_table::Migration), 14 14 ] 15 15 } 16 16 }
api/migration/src/m20260503_125344_add_user_category.rs api/migration/src/m20260503_125344_add_category_table.rs