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(Artists::Table) .add_column( ColumnDef::new(Artists::Monitored) .boolean() .not_null() .default(false), ) .to_owned(), ) .await?; manager .alter_table( Table::alter() .table(Artists::Table) .add_column(ColumnDef::new(Artists::LastCheckedAt).timestamp()) .to_owned(), ) .await } async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> { manager .alter_table( Table::alter() .table(Artists::Table) .drop_column(Artists::LastCheckedAt) .to_owned(), ) .await?; manager .alter_table( Table::alter() .table(Artists::Table) .drop_column(Artists::Monitored) .to_owned(), ) .await } } #[derive(DeriveIden)] enum Artists { Table, Monitored, LastCheckedAt, }