.time is not actually supported, stop claiming it is

This commit is contained in:
Gwynne Raskind 2025-05-05 09:20:25 -05:00 committed by GitHub
parent 21c73f9132
commit 1c05242c89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -74,7 +74,6 @@ database.schema("planets").delete()
|`.uint{8,16,32,64}`|`UInt{8,16,32,64}`|
|`.bool`|`Bool`|
|`.datetime`|`Date` (recommended)|
|`.time`|`Date` (omitting day, month, and year)|
|`.date`|`Date` (omitting time of day)|
|`.float`|`Float`|
|`.double`|`Double`|
@ -404,4 +403,4 @@ try await db.schema("planets", space: "mirror_universe")
.id()
// ...
.create()
```
```