trifid_api_migration 0.2.0

Database migrations for trifid-api
Documentation
use crate::m20230402_232316_create_table_organizations::Organization;
use sea_orm_migration::prelude::*;

#[derive(DeriveMigrationName)]
pub struct Migration;

#[async_trait::async_trait]
impl MigrationTrait for Migration {
    async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
        manager
            .create_table(
                Table::create()
                    .table(Role::Table)
                    .col(ColumnDef::new(Role::Id).string().not_null().primary_key())
                    .col(ColumnDef::new(Role::Name).string().not_null().unique_key())
                    .col(ColumnDef::new(Role::Description).string().not_null())
                    .col(ColumnDef::new(Role::Organization).string().not_null())
                    .col(ColumnDef::new(Role::CreatedAt).big_integer().not_null())
                    .col(ColumnDef::new(Role::ModifiedAt).big_integer().not_null())
                    .foreign_key(
                        ForeignKey::create()
                            .from(Role::Table, Role::Organization)
                            .to(Organization::Table, Organization::Id)
                            .on_update(ForeignKeyAction::Cascade)
                            .on_delete(ForeignKeyAction::Cascade),
                    )
                    .to_owned(),
            )
            .await
    }

    async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
        manager
            .drop_table(Table::drop().table(Role::Table).to_owned())
            .await
    }
}

/// Learn more at https://docs.rs/sea-query#iden
#[derive(Iden)]
pub enum Role {
    Table,
    Id,
    Name,
    Description,
    Organization,
    CreatedAt,
    ModifiedAt,
}