mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Don't show 'None' as label for nullable foreign key, closes #406
This commit is contained in:
parent
ed57e4f990
commit
14da70525b
4 changed files with 25 additions and 5 deletions
|
|
@ -754,6 +754,7 @@ INSERT INTO primary_key_multiple_columns VALUES (1, 'hey', 'world');
|
|||
INSERT INTO primary_key_multiple_columns_explicit_label VALUES (1, 'hey', 'world2');
|
||||
|
||||
INSERT INTO foreign_key_references VALUES (1, 1, 1);
|
||||
INSERT INTO foreign_key_references VALUES (2, null, null);
|
||||
|
||||
INSERT INTO complex_foreign_keys VALUES (1, 1, 2, 1);
|
||||
INSERT INTO custom_foreign_key_label VALUES (1, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue