MCPcopy Create free account
hub / github.com/Vanderhoof/PyDBML / boolean_column

Function boolean_column

test/conftest.py:91–103  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

89
90@pytest.fixture
91def boolean_column() -> Column:
92 return Column(
93 name='enabled',
94 type='boolean',
95 pk=False,
96 autoinc=False,
97 unique=False,
98 not_null=True,
99 default=False,
100 comment='This is a defaulted boolean column',
101 note=Note('This is a note for the column'),
102 properties={'foo': 'bar', 'baz': "qux\nqux"}
103 )
104
105
106@pytest.fixture

Callers

nothing calls this directly

Calls 2

ColumnClass · 0.90
NoteClass · 0.90

Tested by

no test coverage detected