vein-admin-migration 0.3.0

Database migrations for Vein admin service
Documentation
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(CatalogMeta::Table)
                    .if_not_exists()
                    .col(
                        ColumnDef::new(CatalogMeta::Key)
                            .string()
                            .not_null()
                            .primary_key(),
                    )
                    .col(ColumnDef::new(CatalogMeta::Value).string().not_null())
                    .to_owned(),
            )
            .await
    }

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

#[derive(DeriveIden)]
enum CatalogMeta {
    Table,
    Key,
    Value,
}