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

Function string_column

test/conftest.py:69–81  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

67
68@pytest.fixture
69def string_column() -> Column:
70 return Column(
71 name='name',
72 type='varchar(255)',
73 pk=False,
74 autoinc=False,
75 unique=True,
76 not_null=True,
77 default='value\'s',
78 comment='This is a defaulted string column',
79 note=Note('This is a note for the column'),
80 properties={'foo': 'bar', 'baz': "qux\nqux"}
81 )
82
83
84@pytest.fixture

Callers

nothing calls this directly

Calls 2

ColumnClass · 0.90
NoteClass · 0.90

Tested by

no test coverage detected