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 .alter_table( Table::alter() .table(RpcAccountingV2::Table) .drop_column(RpcAccountingV2::Origin) .drop_column(RpcAccountingV2::Method) .to_owned(), ) .await } async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> { manager .alter_table( Table::alter() .table(RpcAccountingV2::Table) .add_column( ColumnDef::new(RpcAccountingV2::Method) .string() .not_null() .default(""), ) .add_column( ColumnDef::new(RpcAccountingV2::Origin) .string() .not_null() .default(""), ) .to_owned(), ) .await } } /// Learn more at https://docs.rs/sea-query#iden #[derive(Iden)] enum RpcAccountingV2 { Table, Origin, Method, }