Skip to content

Commit

Permalink
docs: unsigned integers (SeaQL/sea-orm#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Dec 22, 2021
1 parent 81ffe24 commit ac6d49e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions SeaORM/docs/03-generate-entity/02-entity-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,14 @@ The column type will be derived automatically with the following mapping:
| --------- | ------------- |
| char | Char |
| String | String |
| u8, i8 | TinyInteger |
| u16, i16 | SmallInteger |
| u32, i32 | Integer |
| u64, i64 | BigInteger |
| i8 | TinyInteger |
| u8 | TinyUnsigned |
| i16 | SmallInteger |
| u16 | SmallUnsigned |
| i32 | Integer |
| u32 | Unsigned |
| i64 | BigInteger |
| u64 | BigUnsigned |
| f32 | Float |
| f64 | Double |
| bool | Boolean |
Expand Down

0 comments on commit ac6d49e

Please sign in to comment.