Skip to content
Snippets Groups Projects
Commit b9ff0d47 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Add default value. (Redmine issue: #7106)

parent 158b9058
No related branches found
No related tags found
No related merge requests found
......@@ -21,4 +21,4 @@ def upgrade(): # pylint: disable=locally-disabled,missing-docstring
def downgrade(): # pylint: disable=locally-disabled,missing-docstring
op.add_column('groups', sa.Column('managed', sa.BOOLEAN(), autoincrement=False, nullable=False))
op.add_column('groups', sa.Column('managed', sa.BOOLEAN(), autoincrement=False, nullable=False, default=False, server_default='f'))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment