mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-03 20:38:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
		
			322 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			322 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								"""Macrocontext NoOp for sync
							 | 
						||
| 
								 | 
							
								Revision ID: 1c55c341360f
							 | 
						||
| 
								 | 
							
								Revises: 39428242f7f5
							 | 
						||
| 
								 | 
							
								Create Date: 2024-01-09 15:01:39.698918
							 | 
						||
| 
								 | 
							
								"""
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# revision identifiers, used by Alembic.
							 | 
						||
| 
								 | 
							
								revision = '1c55c341360f'
							 | 
						||
| 
								 | 
							
								down_revision = '39428242f7f5'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								from alembic import op
							 | 
						||
| 
								 | 
							
								import sqlalchemy as sa
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								def upgrade():
							 | 
						||
| 
								 | 
							
								    pass
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								def downgrade():
							 | 
						||
| 
								 | 
							
								    pass
							 |