Wongs

Results 1 comments of Wongs

Using `server_default` alone cannot completely solve this problem. You can try using the following approach. ~~~python table = sa.Table( "table", metadata, sa.Column("Id", sa.Integer(), primary_key=True), sa.Column("Thing", sa.Integer(), default=sa.cast(0, sa.Integer), nullable=False), )...