trifid_api_migration 0.2.0

Database migrations for trifid-api
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(KeystoreHost::Table)
                .col(
                    ColumnDef::new(KeystoreHost::Id)
                        .string()
                        .not_null()
                        .primary_key()
                )
                .col(
                    ColumnDef::new(KeystoreHost::Counter)
                        .integer()
                        .not_null()
                )
                .to_owned()
        ).await
    }

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

#[derive(Iden)]
enum KeystoreHost {
    Table,
    Id,
    Counter,
}