//! SeaORM migration: add ai_code_review_enabled to repo table use sea_orm_migration::prelude::*; pub struct Migration; impl MigrationName for Migration { fn name(&self) -> &str { "m20260407_000003_add_repo_ai_code_review" } } #[async_trait::async_trait] impl MigrationTrait for Migration { async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> { let sql = include_str!("sql/m20260407_000003_add_repo_ai_code_review.sql"); super::execute_sql(manager, sql).await } async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> { manager .get_connection() .execute_raw(sea_orm::Statement::from_string( sea_orm::DbBackend::Postgres, "ALTER TABLE repo DROP COLUMN IF EXISTS ai_code_review_enabled;", )) .await?; Ok(()) } }