42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
"""add last active at
|
|
|
|
Revision ID: 614f77cecc48
|
|
Revises: a45f4dfde53b
|
|
Create Date: 2023-06-15 13:33:00.357467
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
|
|
def _is_pg(conn):
|
|
return conn.dialect.name == "postgresql"
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '614f77cecc48'
|
|
down_revision = 'a45f4dfde53b'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
conn = op.get_bind()
|
|
|
|
if _is_pg(conn):
|
|
with op.batch_alter_table('accounts', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('last_active_at', sa.DateTime(), server_default=sa.text('CURRENT_TIMESTAMP(0)'), nullable=False))
|
|
else:
|
|
with op.batch_alter_table('accounts', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('last_active_at', sa.DateTime(), server_default=sa.func.current_timestamp(), nullable=False))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('accounts', schema=None) as batch_op:
|
|
batch_op.drop_column('last_active_at')
|
|
|
|
# ### end Alembic commands ###
|