rave/migration/src/m000005_create_genre.rs

55 lines
1.6 KiB
Rust
Raw Normal View History

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()
2023-10-10 18:25:02 +00:00
.table(Genre::Table)
.if_not_exists()
.col(
2023-10-10 18:25:02 +00:00
ColumnDef::new(Genre::Id)
.big_integer()
.not_null()
.primary_key()
.auto_increment()
.unique_key(),
)
2023-10-10 18:25:02 +00:00
.col(ColumnDef::new(Genre::Name).string().not_null().unique_key())
.col(
2023-10-10 18:25:02 +00:00
ColumnDef::new(Genre::SongCount)
.big_integer()
.not_null()
2023-10-10 18:25:02 +00:00
.default(0),
)
.col(
ColumnDef::new(Genre::AlbumCount)
.big_integer()
.not_null()
.default(0),
)
.to_owned(),
)
.await
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
2023-10-10 18:25:02 +00:00
.drop_table(Table::drop().table(Genre::Table).to_owned())
.await
}
}
#[derive(DeriveIden)]
2023-10-10 18:25:02 +00:00
pub enum Genre {
Table,
Id,
Name,
2023-10-10 18:25:02 +00:00
SongCount,
AlbumCount,
}