| 
									
										
										
										
											2016-12-05 19:06:34 -06:00
										 |  |  | # -*- coding: utf-8; mode: python -*- | 
					
						
							| 
									
										
										
										
											2017-08-05 12:54:08 -05:00
										 |  |  | # -*- coding: utf-8; -*- | 
					
						
							| 
									
										
										
										
											2016-12-05 19:06:34 -06:00
										 |  |  | """${message} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Revision ID: ${up_revision} | 
					
						
							|  |  |  | Revises: ${down_revision | comma,n} | 
					
						
							|  |  |  | Create Date: ${create_date} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from __future__ import unicode_literals, absolute_import | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # revision identifiers, used by Alembic. | 
					
						
							|  |  |  | revision = ${repr(up_revision)} | 
					
						
							|  |  |  | down_revision = ${repr(down_revision)} | 
					
						
							|  |  |  | branch_labels = ${repr(branch_labels)} | 
					
						
							|  |  |  | depends_on = ${repr(depends_on)} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from alembic import op | 
					
						
							|  |  |  | import sqlalchemy as sa | 
					
						
							|  |  |  | import rattail.db.types | 
					
						
							|  |  |  | ${imports if imports else ""} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def upgrade(): | 
					
						
							|  |  |  |     ${upgrades if upgrades else "pass"} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def downgrade(): | 
					
						
							|  |  |  |     ${downgrades if downgrades else "pass"} |