mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 00:41:35 -05:00
19 lines
299 B
Python
19 lines
299 B
Python
"""
|
|
|
|
Revises: 0406_adjust_agreement_model
|
|
|
|
"""
|
|
from alembic import op
|
|
|
|
down_revision = "0406_adjust_agreement_model"
|
|
revision = "0407_fix_preferred_timezone"
|
|
|
|
|
|
def upgrade():
|
|
op.execute("update users set preferred_timezone='US/Eastern' where preferred_timezone=''")
|
|
|
|
|
|
|
|
def downgrade():
|
|
pass
|