use sea_orm_migration::prelude::*;
pub struct Migration;
impl MigrationName for Migration {
fn name(&self) -> &str {
"product_migration"
}
}
#[async_trait::async_trait]
impl MigrationTrait for Migration {
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.create_table(
Table::create()
.table(Products::Table)
.if_not_exists()
.col(ColumnDef::new(Products::Id).integer().not_null().primary_key())
.col(ColumnDef::new(Products::Name).string().not_null())
.col(ColumnDef::new(Products::Price).double().not_null())
.col(ColumnDef::new(Products::Views).big_integer().not_null())
.to_owned(),
)
.await
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.drop_table(Table::drop().table(Products::Table).to_owned())
.await
}
}
#[derive(Iden)]
pub enum Products {
Table,
Id,
Name,
Price,
Views,
}