Commit 8d026839ecb95170f20a65d6a048111432a29ecf
1 parent
086ff2f7
remove get_Bool with Maybe(Bool) return. It was bad idea. No application are affected
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
database/db_types.anubis
| ... | ... | @@ -6,6 +6,7 @@ |
| 6 | 6 | * |
| 7 | 7 | */ |
| 8 | 8 | transmit tools/basis.anubis |
| 9 | +transmit tools/ISO-8601.anubis | |
| 9 | 10 | |
| 10 | 11 | public type DB_id: |
| 11 | 12 | none, |
| ... | ... | @@ -91,7 +92,7 @@ public define Maybe(DB_datetime) |
| 91 | 92 | public define DB_datetime |
| 92 | 93 | now |
| 93 | 94 | = |
| 94 | - _Int_to_ISO_8601_datetime(now). | |
| 95 | + db_datetime(_Int_to_ISO_8601_datetime(now)). | |
| 95 | 96 | |
| 96 | 97 | |
| 97 | 98 | public define Maybe(DB_time) | ... | ... |