Asterisk - The Open Source Telephony Project GIT-master-27fb039
Loading...
Searching...
No Matches
Functions | Variables
65eb22eb195_add_unidentified_request_options_to_ Namespace Reference

Functions

 downgrade ()
 
 upgrade ()
 

Variables

str down_revision = '8d478ab86e29'
 
str revision = '65eb22eb195'
 

Function Documentation

◆ downgrade()

downgrade ( )

Definition at line 23 of file 65eb22eb195_add_unidentified_request_options_to_.py.

23def downgrade():
24 op.drop_column('ps_globals', 'unidentified_request_count')
25 op.drop_column('ps_globals', 'unidentified_request_period')
26 op.drop_column('ps_globals', 'unidentified_request_prune_interval')
27 op.drop_column('ps_globals', 'default_realm')

◆ upgrade()

upgrade ( )

Definition at line 17 of file 65eb22eb195_add_unidentified_request_options_to_.py.

17def upgrade():
18 op.add_column('ps_globals', sa.Column('unidentified_request_count', sa.Integer))
19 op.add_column('ps_globals', sa.Column('unidentified_request_period', sa.Integer))
20 op.add_column('ps_globals', sa.Column('unidentified_request_prune_interval', sa.Integer))
21 op.add_column('ps_globals', sa.Column('default_realm', sa.String(40)))
22

Variable Documentation

◆ down_revision

str down_revision = '8d478ab86e29'

◆ revision

str revision = '65eb22eb195'