- Run cargo fmt on all Rust crates for consistent formatting - Update CLAUDE.md with WASM plugin commands and dev.ps1 instructions - Update wiki: add WASM plugin architecture, rewrite dev environment docs - Minor frontend cleanup (unused imports)
85 lines
2.9 KiB
Rust
85 lines
2.9 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(Alias::new("domain_events"))
|
|
.if_not_exists()
|
|
.col(
|
|
ColumnDef::new(Alias::new("id"))
|
|
.uuid()
|
|
.not_null()
|
|
.primary_key(),
|
|
)
|
|
.col(ColumnDef::new(Alias::new("tenant_id")).uuid().not_null())
|
|
.col(
|
|
ColumnDef::new(Alias::new("event_type"))
|
|
.string_len(200)
|
|
.not_null(),
|
|
)
|
|
.col(ColumnDef::new(Alias::new("payload")).json().null())
|
|
.col(ColumnDef::new(Alias::new("correlation_id")).uuid().null())
|
|
.col(
|
|
ColumnDef::new(Alias::new("status"))
|
|
.string_len(20)
|
|
.not_null()
|
|
.default("pending"),
|
|
)
|
|
.col(
|
|
ColumnDef::new(Alias::new("attempts"))
|
|
.integer()
|
|
.not_null()
|
|
.default(0),
|
|
)
|
|
.col(ColumnDef::new(Alias::new("last_error")).text().null())
|
|
.col(
|
|
ColumnDef::new(Alias::new("created_at"))
|
|
.timestamp_with_time_zone()
|
|
.not_null(),
|
|
)
|
|
.col(
|
|
ColumnDef::new(Alias::new("published_at"))
|
|
.timestamp_with_time_zone()
|
|
.null(),
|
|
)
|
|
.to_owned(),
|
|
)
|
|
.await?;
|
|
|
|
manager
|
|
.create_index(
|
|
Index::create()
|
|
.name("idx_domain_events_status")
|
|
.table(Alias::new("domain_events"))
|
|
.col(Alias::new("status"))
|
|
.col(Alias::new("created_at"))
|
|
.to_owned(),
|
|
)
|
|
.await?;
|
|
|
|
manager
|
|
.create_index(
|
|
Index::create()
|
|
.name("idx_domain_events_tenant")
|
|
.table(Alias::new("domain_events"))
|
|
.col(Alias::new("tenant_id"))
|
|
.to_owned(),
|
|
)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
|
manager
|
|
.drop_table(Table::drop().table(Alias::new("domain_events")).to_owned())
|
|
.await
|
|
}
|
|
}
|