Skip to content

Commit

Permalink
feat(migrations): fix naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrkazik99 committed Sep 11, 2024
1 parent e108799 commit caad35f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod m20240718_000010_create_userpermission;
mod m20240726_000001_normalize_schema;
mod m20240807_000001_add_segmentation_column;
mod m20240905_000001_add_user_active_admin_fields;
mod m20240907_000001_add_user_forcechangepassword_field;
mod m20240907_000001_add_user_force_change_password_field;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
Expand All @@ -45,7 +45,7 @@ impl MigratorTrait for Migrator {
Box::new(m20240726_000001_normalize_schema::Migration),
Box::new(m20240807_000001_add_segmentation_column::Migration),
Box::new(m20240905_000001_add_user_active_admin_fields::Migration),
Box::new(m20240907_000001_add_user_forcechangepassword_field::Migration),
Box::new(m20240907_000001_add_user_force_change_password_field::Migration),
]
}
}

0 comments on commit caad35f

Please sign in to comment.