diff --git a/crates/migration/erm.drawio b/crates/migration/erm.drawio index 95607bf..5f0b632 100644 --- a/crates/migration/erm.drawio +++ b/crates/migration/erm.drawio @@ -1,305 +1,305 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -307,62 +307,62 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/crates/migration/src/baseline.rs b/crates/migration/src/baseline.rs index 1863d6d..31f93a0 100644 --- a/crates/migration/src/baseline.rs +++ b/crates/migration/src/baseline.rs @@ -7,16 +7,98 @@ pub struct Migration; impl MigrationTrait for Migration { async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> { // Replace the sample below with your own migration scripts - todo!(); manager .create_table( Table::create() - .table(Post::Table) + .table(Project::Table) .if_not_exists() - .col(pk_auto(Post::Id)) - .col(string(Post::Title)) - .col(string(Post::Text)) + .col( + uuid(Project::Id) + .extra("DEFAULT gen_random_uuid()") + .primary_key(), + ) + .col(string(Project::Name)) + .to_owned(), + ) + .await?; + + manager + .create_table( + Table::create() + .table(Group::Table) + .if_not_exists() + .primary_key(Index::create().col(Group::Id).col(Group::ProjectId)) + .col(uuid(Group::Id).extra("DEFAULT gen_random_uuid()")) + .col(uuid(Group::ProjectId)) + .col(string(Group::Name)) + .foreign_key( + ForeignKey::create() + .name("fk-project-id") + .from(Group::Table, Group::ProjectId) + .to(Project::Table, Project::Id) + .on_update(ForeignKeyAction::Cascade) + .on_delete(ForeignKeyAction::Cascade), + ) + .to_owned(), + ) + .await?; + + manager + .create_table( + Table::create() + .table(User::Table) + .if_not_exists() + .col( + uuid(User::Id) + .extra("DEFAULT gen_random_uuid()") + .primary_key(), + ) + .col(string(User::Name)) + .col(string(User::Role)) + .to_owned(), + ) + .await?; + + manager + .create_table( + Table::create() + .table(UserGroupProject::Table) + .if_not_exists() + .col(uuid(UserGroupProject::UserId)) + .col(uuid(UserGroupProject::GroupId)) + .col(uuid(UserGroupProject::ProjectId)) + .primary_key( + Index::create() + .col(UserGroupProject::UserId) + .col(UserGroupProject::GroupId) + .col(UserGroupProject::ProjectId), + ) + .index( + Index::create() + .col(UserGroupProject::UserId) + .col(UserGroupProject::ProjectId) + .unique(), + ) + .foreign_key( + ForeignKey::create() + .name("fk-user-id") + .from(UserGroupProject::Table, UserGroupProject::UserId) + .to(User::Table, User::Id) + .on_update(ForeignKeyAction::Cascade) + .on_delete(ForeignKeyAction::Cascade), + ) + .foreign_key( + ForeignKey::create() + .name("fk-project-group-id") + .from( + UserGroupProject::Table, + (UserGroupProject::GroupId, UserGroupProject::ProjectId), + ) + .to(Group::Table, (Group::Id, Group::ProjectId)) + .on_update(ForeignKeyAction::Cascade) + .on_delete(ForeignKeyAction::Cascade), + ) .to_owned(), ) .await @@ -24,18 +106,48 @@ impl MigrationTrait for Migration { async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> { // Replace the sample below with your own migration scripts - todo!(); manager - .drop_table(Table::drop().table(Post::Table).to_owned()) + .drop_table(Table::drop().table(Project::Table).to_owned()) + .await?; + + manager + .drop_table(Table::drop().table(Group::Table).to_owned()) + .await?; + + manager + .drop_table(Table::drop().table(User::Table).to_owned()) .await } } #[derive(DeriveIden)] -enum Post { +enum Project { Table, Id, - Title, - Text, + Name, +} + +#[derive(DeriveIden)] +enum Group { + Table, + Id, + ProjectId, + Name, +} + +#[derive(DeriveIden)] +enum User { + Table, + Id, + Name, + Role, +} + +#[derive(DeriveIden)] +enum UserGroupProject { + Table, + UserId, + GroupId, + ProjectId, }