Skip to content

Commit

Permalink
Apply SeaQL#556 manually to fix SeaQL/sea-orm#1067
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoJ committed Feb 26, 2023
1 parent 03d2a1d commit 8b307ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/sqlite/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl TableBuilder for SqliteQueryBuilder {
ColumnType::TinyInteger | ColumnType::TinyUnsigned => "integer".into(),
ColumnType::SmallInteger | ColumnType::SmallUnsigned => "integer".into(),
ColumnType::Integer | ColumnType::Unsigned => "integer".into(),
ColumnType::BigInteger | ColumnType::BigUnsigned => "integer".into(),
ColumnType::BigInteger | ColumnType::BigUnsigned => "bigint".into(),
ColumnType::Float => "real".into(),
ColumnType::Double => "real".into(),
ColumnType::Decimal(precision) => match precision {
Expand Down

0 comments on commit 8b307ea

Please sign in to comment.