jacob Sinclair

Results 4 comments of jacob Sinclair

I do like the Lua idea, and I feel like that could lead to a nice clean solution, e.g. ```lua let list items = {"a", "b", "c"} for i, x...

> Duplicate of #1984 > > Also Sqlite primary keys are allowed to be nullable: > > > Based on the SQL standard, PRIMARY KEY should always imply NOT NULL....

when I run `PRAGMA table_info('collection_cards')`, I get ``` 0|id|INTEGER|99||1 1|collection|INTEGER|99||0 2|uuid|VARCHAR|99||0 ```

Just noticed this too: I have the SQL ```sql CREATE TABLE deck_cards ( id INTEGER PRIMARY KEY NOT NULL, deck INTEGER NOT NULL, uuid VARCHAR NOT NULL ) ``` which...