mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
Added support for PgMoney type in sqlx macros
This commit is contained in:
parent
db09cb61e5
commit
012478d8b7
1 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,8 @@ impl_database_ext! {
|
|||
|
||||
sqlx::postgres::types::PgInterval,
|
||||
|
||||
sqlx::postgres::types::PgMoney,
|
||||
|
||||
#[cfg(feature = "uuid")]
|
||||
sqlx::types::Uuid,
|
||||
|
||||
|
@ -76,6 +78,7 @@ impl_database_ext! {
|
|||
Vec<i64> | &[i64],
|
||||
Vec<f32> | &[f32],
|
||||
Vec<f64> | &[f64],
|
||||
Vec<sqlx::postgres::types::PgMoney> | &[sqlx::postgres::types::PgMoney],
|
||||
|
||||
#[cfg(feature = "uuid")]
|
||||
Vec<sqlx::types::Uuid> | &[sqlx::types::Uuid],
|
||||
|
|
Loading…
Reference in a new issue