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(Artist::Table) .if_not_exists() .col( ColumnDef::new(Artist::Id) .big_integer() .not_null() .primary_key() .auto_increment() .unique_key(), ) .col( ColumnDef::new(Artist::Name) .string() .not_null() .unique_key(), ) .col(ColumnDef::new(Artist::CoverArt).string().null()) .col(ColumnDef::new(Artist::ArtistImageUrl).string().null()) .col( ColumnDef::new(Artist::AlbumCount) .integer() .not_null() .default(0), ) .col( ColumnDef::new(Artist::Starred) .boolean() .not_null() .default(false), ) .to_owned(), ) .await } async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> { manager .drop_table(Table::drop().table(Artist::Table).to_owned()) .await } } #[derive(DeriveIden)] pub enum Artist { Table, Id, Name, CoverArt, ArtistImageUrl, AlbumCount, Starred, }