48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
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> {
|
|
// Replace the sample below with your own migration scripts
|
|
todo!();
|
|
|
|
manager
|
|
.create_table(
|
|
Table::create()
|
|
.table(Post::Table)
|
|
.if_not_exists()
|
|
.col(
|
|
ColumnDef::new(Post::Id)
|
|
.integer()
|
|
.not_null()
|
|
.auto_increment()
|
|
.primary_key(),
|
|
)
|
|
.col(ColumnDef::new(Post::Title).string().not_null())
|
|
.col(ColumnDef::new(Post::Text).string().not_null())
|
|
.to_owned(),
|
|
)
|
|
.await
|
|
}
|
|
|
|
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
|
// Replace the sample below with your own migration scripts
|
|
todo!();
|
|
|
|
manager
|
|
.drop_table(Table::drop().table(Post::Table).to_owned())
|
|
.await
|
|
}
|
|
}
|
|
|
|
#[derive(DeriveIden)]
|
|
enum Post {
|
|
Table,
|
|
Id,
|
|
Title,
|
|
Text,
|
|
}
|