36 lines
		
	
	
	
		
			980 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			980 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Create event table
 | |
| 
 | |
| Revision ID: 6d239e987242
 | |
| Revises: 7cdd046a2abf
 | |
| Create Date: 2024-03-03 20:20:57.235877
 | |
| 
 | |
| """
 | |
| from alembic import op
 | |
| import sqlalchemy as sa
 | |
| 
 | |
| 
 | |
| # revision identifiers, used by Alembic.
 | |
| revision = '6d239e987242'
 | |
| down_revision = '7cdd046a2abf'
 | |
| branch_labels = None
 | |
| depends_on = None
 | |
| 
 | |
| 
 | |
| def upgrade():
 | |
|     # ### commands auto generated by Alembic - please adjust! ###
 | |
|     op.create_table('acm_events',
 | |
|     sa.Column('id', sa.String(), nullable=False),
 | |
|     sa.Column('name', sa.String(), nullable=False),
 | |
|     sa.Column('description', sa.String(), nullable=True),
 | |
|     sa.Column('location', sa.String(), nullable=False),
 | |
|     sa.Column('start_time', sa.DateTime(), nullable=False),
 | |
|     sa.Column('end_time', sa.DateTime(), nullable=False),
 | |
|     sa.PrimaryKeyConstraint('id')
 | |
|     )
 | |
|     # ### end Alembic commands ###
 | |
| 
 | |
| 
 | |
| def downgrade():
 | |
|     # ### commands auto generated by Alembic - please adjust! ###
 | |
|     op.drop_table('acm_events')
 | |
|     # ### end Alembic commands ###
 | 
