add support for Extra ComlumnSpec
All checks were successful
checks / checks (push) Successful in 4m34s

This commit is contained in:
2025-07-22 21:32:41 +04:00
parent 3ac0fdeae2
commit b1948d3061

View File

@@ -62,7 +62,7 @@ impl Column {
ColumnSpec::UniqueKey => Some("unique key".to_owned()),
ColumnSpec::Check(_) => unimplemented!(),
ColumnSpec::Generated { .. } => unimplemented!(),
ColumnSpec::Extra(_) => unimplemented!(),
ColumnSpec::Extra(e) => Some(e.to_string()),
ColumnSpec::Comment(_) => unimplemented!(),
ColumnSpec::Using(_) => unimplemented!(),
}