.time is not actually supported, stop claiming it is (#1078)

Pretty much what it says on the tin. Since the only change is a
deletion, no separate translation is needed.
This commit is contained in:
Gwynne Raskind 2025-05-05 09:51:07 -05:00 committed by GitHub
parent f492970e62
commit 12b0114882
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1 additions and 5 deletions

View File

@ -74,7 +74,6 @@ Debajo hay un listado con los tipos de datos soportados.
|`.uint{8,16,32,64}`|`UInt{8,16,32,64}`| |`.uint{8,16,32,64}`|`UInt{8,16,32,64}`|
|`.bool`|`Bool`| |`.bool`|`Bool`|
|`.datetime`|`Date` (recomendado)| |`.datetime`|`Date` (recomendado)|
|`.time`|`Date` (omitiendo día, mes y año)|
|`.date`|`Date` (omitiendo hora y minutos del día)| |`.date`|`Date` (omitiendo hora y minutos del día)|
|`.float`|`Float`| |`.float`|`Float`|
|`.double`|`Double`| |`.double`|`Double`|

View File

@ -74,7 +74,6 @@ Supported field data types are listed below.
|`.uint{8,16,32,64}`|`UInt{8,16,32,64}`| |`.uint{8,16,32,64}`|`UInt{8,16,32,64}`|
|`.bool`|`Bool`| |`.bool`|`Bool`|
|`.datetime`|`Date` (recommended)| |`.datetime`|`Date` (recommended)|
|`.time`|`Date` (omitting day, month, and year)|
|`.date`|`Date` (omitting time of day)| |`.date`|`Date` (omitting time of day)|
|`.float`|`Float`| |`.float`|`Float`|
|`.double`|`Double`| |`.double`|`Double`|

View File

@ -74,7 +74,6 @@ Ondersteunde velddatatypes staan hieronder vermeld.
|`.uint{8,16,32,64}`|`UInt{8,16,32,64}`| |`.uint{8,16,32,64}`|`UInt{8,16,32,64}`|
|`.bool`|`Bool`| |`.bool`|`Bool`|
|`.datetime`|`Date` (aanbevolen)| |`.datetime`|`Date` (aanbevolen)|
|`.time`|`Date` (zonder dag, maand en jaar)|
|`.date`|`Date` (het tijdstip weglaten)| |`.date`|`Date` (het tijdstip weglaten)|
|`.float`|`Float`| |`.float`|`Float`|
|`.double`|`Double`| |`.double`|`Double`|

View File

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