blob: 9641b18da86cbce576f788e2f1ab5ff2bef92d6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"""
add in_guild column.
Revision ID: 5683123ff89a
Revises: 2743389eb63e
Create Date: 2020-08-25 19:57:41.958297
"""
import sqlalchemy as sa
from alembic import op
# revision identifiers, used by Alembic.
revision = "5683123ff89a"
down_revision = "2743389eb63e"
branch_labels = None
depends_on = None
def upgrade() -> None:
"""Apply the current migration."""
# ### commands auto generated by Alembic - please adjust! ###
op.add_column("users", sa.Column("in_guild", sa.Boolean(), nullable=True))
# ### end Alembic commands ###
def downgrade() -> None:
"""Revert the current migration."""
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column("users", "in_guild")
# ### end Alembic commands ###
|