()
| 67 | |
| 68 | @pytest.fixture |
| 69 | def 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 |