MickaelOnTheWave / InvoiceManager

A simple Invoice Database with a GUI client to handle it
GNU General Public License v3.0
1 stars 0 forks source link

Change Date format in DB to Date #5

Closed MickaelOnTheWave closed 1 year ago

MickaelOnTheWave commented 1 year ago

Today, date field is TEXT. It should be DATE. This will require versioning update of the DB.

MickaelOnTheWave commented 1 year ago

SQLite has no DATE type. It can be declared as such, but under the hood it will use any type provided by the user. So it can remain as a TEXT as there is no value in changing its type.