Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
fc0527eb
Commit
fc0527eb
authored
9 years ago
by
Joshua Colp
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "pjsip/alembic: Add missing columns to system and registration"
parents
0aea2934
9b13ab6a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configs/samples/pjsip.conf.sample
+9
-0
9 additions, 0 deletions
configs/samples/pjsip.conf.sample
contrib/ast-db-manage/config/versions/dbc44d5a908_add_missing_columns_to_sys_and_reg.py
+37
-0
37 additions, 0 deletions
...ersions/dbc44d5a908_add_missing_columns_to_sys_and_reg.py
with
46 additions
and
0 deletions
configs/samples/pjsip.conf.sample
+
9
−
0
View file @
fc0527eb
...
...
@@ -948,6 +948,15 @@
; 407 become subject to this retry interval.
;server_uri= ; SIP URI of the server to register against (default: "")
;transport= ; Transport used for outbound authentication (default: "")
;line= ; When enabled this option will cause a 'line' parameter to be
; added to the Contact header placed into the outgoing
; registration request. If the remote server sends a call
; this line parameter will be used to establish a relationship
; to the outbound registration, ultimately causing the
; configured endpoint to be used (default: "no")
;endpoint= ; When line support is enabled this configured endpoint name
; is used for incoming calls that are related to the outbound
; registration (default: "")
;type= ; Must be of type registration (default: "")
...
...
This diff is collapsed.
Click to expand it.
contrib/ast-db-manage/config/versions/dbc44d5a908_add_missing_columns_to_sys_and_reg.py
0 → 100644
+
37
−
0
View file @
fc0527eb
"""
Add missing columns to system and registration
Revision ID: dbc44d5a908
Revises: 423f34ad36e2
Create Date: 2016-02-03 13:15:15.083043
"""
# revision identifiers, used by Alembic.
revision
=
'
dbc44d5a908
'
down_revision
=
'
423f34ad36e2
'
from
alembic
import
op
import
sqlalchemy
as
sa
from
sqlalchemy.dialects.postgresql
import
ENUM
YESNO_NAME
=
'
yesno_values
'
YESNO_VALUES
=
[
'
yes
'
,
'
no
'
]
def
upgrade
():
############################# Enums ##############################
# yesno_values have already been created, so use postgres enum object
# type to get around "already created" issue - works okay with mysql
yesno_values
=
ENUM
(
*
YESNO_VALUES
,
name
=
YESNO_NAME
,
create_type
=
False
)
op
.
add_column
(
'
ps_systems
'
,
sa
.
Column
(
'
disable_tcp_switch
'
,
yesno_values
))
op
.
add_column
(
'
ps_registrations
'
,
sa
.
Column
(
'
line
'
,
yesno_values
))
op
.
add_column
(
'
ps_registrations
'
,
sa
.
Column
(
'
endpoint
'
,
sa
.
String
(
40
)))
pass
def
downgrade
():
op
.
drop_column
(
'
ps_systems
'
,
'
disable_tcp_switch
'
)
op
.
drop_column
(
'
ps_registrations
'
,
'
line
'
)
op
.
drop_column
(
'
ps_registrations
'
,
'
endpoint
'
)
pass
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment