From 9eeb43c806edea7e74cf1465b460939c9404cebd Mon Sep 17 00:00:00 2001 From: Runji Wang Date: Mon, 17 Jun 2024 15:38:37 +0800 Subject: [PATCH] Update src/meta/model_v2/migration/src/m20240617_070131_index_column_properties.rs Co-authored-by: August --- .../migration/src/m20240617_070131_index_column_properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta/model_v2/migration/src/m20240617_070131_index_column_properties.rs b/src/meta/model_v2/migration/src/m20240617_070131_index_column_properties.rs index 7aeca0139302..daff755da999 100644 --- a/src/meta/model_v2/migration/src/m20240617_070131_index_column_properties.rs +++ b/src/meta/model_v2/migration/src/m20240617_070131_index_column_properties.rs @@ -21,7 +21,7 @@ impl MigrationTrait for Migration { .alter_table( Table::alter() .table(Index::Table) - .drop_column(Alias::new(Index::IndexColumnProperties.to_string())) + .drop_column(Index::IndexColumnProperties) .to_owned(), ) .await