short and long description

This commit is contained in:
Priec
2026-06-23 11:13:26 +02:00
parent 031f86adb0
commit 1cf330e4e8
10 changed files with 49 additions and 3 deletions

View File

@@ -45,6 +45,7 @@ mod m20260622_000003_variant_stock_nullable;
mod m20260622_000004_product_search;
mod m20260622_000005_product_search_aggregate;
mod m20260622_000006_order_search_indexes;
mod m20260623_000001_add_short_description_to_products;
pub struct Migrator;
#[async_trait::async_trait]
@@ -94,6 +95,7 @@ impl MigratorTrait for Migrator {
Box::new(m20260622_000004_product_search::Migration),
Box::new(m20260622_000005_product_search_aggregate::Migration),
Box::new(m20260622_000006_order_search_indexes::Migration),
Box::new(m20260623_000001_add_short_description_to_products::Migration),
// inject-above (do not remove this comment)
]
}