Skip to content

Commit

Permalink
real_money
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Jan 31, 2024
1 parent e2657ff commit f570c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqlite/def/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn parse_type(data_type: &str) -> Result<ColumnType, ParseIntError> {
})
}
"boolean" => ColumnType::Boolean,
"money" => ColumnType::Money(if parts.len() == 2 {
"real_money" => ColumnType::Money(if parts.len() == 2 {
Some((parts[0], parts[1]))
} else {
None
Expand Down

0 comments on commit f570c18

Please sign in to comment.