Browse Source
Merge pull request #63 from tony1661/patch-7
Fix for being able to disable IPv6 support
pull/65/head
Per-Arne Andersen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
wg_dashboard_backend/migrations/versions/006_create_v6_subnet.py
|
|
@ -6,7 +6,7 @@ def upgrade(migrate_engine): |
|
|
|
try: |
|
|
|
meta = MetaData(bind=migrate_engine) |
|
|
|
peer = Table('server', meta, autoload=True) |
|
|
|
v6_subnet = Column('v6_subnet', INTEGER) |
|
|
|
v6_subnet = Column('v6_subnet', INTEGER, nullable=True) |
|
|
|
v6_subnet.create(peer) |
|
|
|
except: |
|
|
|
pass |
|
|
|