43 lines
1.2 KiB
Rust
43 lines
1.2 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> {
|
|
manager
|
|
.create_table(
|
|
Table::create()
|
|
.table(User::Table)
|
|
.if_not_exists()
|
|
.col(
|
|
ColumnDef::new(User::Id)
|
|
.uuid()
|
|
.extra("DEFAULT gen_random_uuid()")
|
|
.primary_key()
|
|
.not_null(),
|
|
)
|
|
.col(ColumnDef::new(User::Name).string().not_null())
|
|
.col(ColumnDef::new(User::Email).string().not_null().unique_key())
|
|
.col(ColumnDef::new(User::Hash).string().not_null())
|
|
.to_owned(),
|
|
)
|
|
.await
|
|
}
|
|
|
|
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
|
manager
|
|
.drop_table(Table::drop().table(User::Table).to_owned())
|
|
.await
|
|
}
|
|
}
|
|
|
|
#[derive(DeriveIden)]
|
|
enum User {
|
|
Table,
|
|
Id,
|
|
Name,
|
|
Email,
|
|
Hash,
|
|
}
|