mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Add comment explaining why sfld column has type integer
The `notes.sfld` column in the `collection.anki2` database has type `integer`, even though it contains text. This is [something SQLite allows](https://dba.stackexchange.com/questions/106364/text-string-stored-in-sqlite-integer-column) and was done to allow integer values to sort numerically. Add a comment explaining this.
This commit is contained in:
parent
f640602a2d
commit
1eac36c5d7
2 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,8 @@ rye761 <ryebread761@gmail.com>
|
|||
Guillem Palau Salvà <guillempalausalva@gmail.com>
|
||||
Meredith Derecho <meredithderecho@gmail.com>
|
||||
Daniel Wallgren <github.com/wallgrenen>
|
||||
Kerrick Staley <kerrick@kerrickstaley.com>
|
||||
|
||||
********************
|
||||
|
||||
The text of the 3 clause BSD license follows:
|
||||
|
|
|
@ -21,6 +21,8 @@ CREATE TABLE notes (
|
|||
usn integer NOT NULL,
|
||||
tags text NOT NULL,
|
||||
flds text NOT NULL,
|
||||
-- The use of type integer for sfld is deliberate, because it means that integer values in this
|
||||
-- field will sort numerically.
|
||||
sfld integer NOT NULL,
|
||||
csum integer NOT NULL,
|
||||
flags integer NOT NULL,
|
||||
|
|
Loading…
Reference in a new issue