mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-29 02:27:32 +00:00
annotation not null
This commit is contained in:
parent
499bc18857
commit
8e2b363c77
@ -88,7 +88,7 @@ def test_nullable_fields(clear_sqlmodel, caplog):
|
|||||||
assert "str_default_str_nullable VARCHAR," in create_table_log
|
assert "str_default_str_nullable VARCHAR," in create_table_log
|
||||||
assert "str_default_ellipsis_non_nullable VARCHAR NOT NULL," in create_table_log
|
assert "str_default_ellipsis_non_nullable VARCHAR NOT NULL," in create_table_log
|
||||||
assert "str_default_ellipsis_nullable VARCHAR," in create_table_log
|
assert "str_default_ellipsis_nullable VARCHAR," in create_table_log
|
||||||
assert "annotated_any_url VARCHAR(512)," in create_table_log
|
assert "annotated_any_url VARCHAR(512) NOT NULL" in create_table_log
|
||||||
|
|
||||||
|
|
||||||
# Test for regression in https://github.com/tiangolo/sqlmodel/issues/420
|
# Test for regression in https://github.com/tiangolo/sqlmodel/issues/420
|
||||||
|
Loading…
Reference in New Issue
Block a user