We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df86e66 commit 43b944fCopy full SHA for 43b944f
1 file changed
sea-orm-codegen/src/entity/column.rs
@@ -76,7 +76,7 @@ impl Column {
76
ColumnType::Array(column_type) => {
77
format!("Vec<{}>", write_rs_type(column_type, date_time_crate))
78
}
79
- ColumnType::Vector(_) => "::pgvector::Vector".to_owned(),
+ ColumnType::Vector(_) => "PgVector".to_owned(),
80
ColumnType::Bit(None | Some(1)) => "bool".to_owned(),
81
ColumnType::Bit(_) | ColumnType::VarBit(_) => "Vec<u8>".to_owned(),
82
ColumnType::Year => "i32".to_owned(),
0 commit comments