create migration file for changing quota to big integer
parent
2af540a1c9
commit
f1e1c96c3b
@ -0,0 +1,30 @@
|
||||
"""change quota type to bigint
|
||||
|
||||
Revision ID: 3b7eee912b41
|
||||
Revises: fc099bd15cbe
|
||||
Create Date: 2019-01-15 08:51:05.346257
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '3b7eee912b41'
|
||||
down_revision = 'fc099bd15cbe'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
def upgrade():
|
||||
with op.batch_alter_table('domain') as batch:
|
||||
batch.alter_column('max_quota_bytes', type_=sa.BigInteger(), nullable=False, server_default='0')
|
||||
|
||||
with op.batch_alter_table('user') as batch:
|
||||
batch.alter_column('quota_bytes', type_=sa.BigInteger(), nullable=False)
|
||||
batch.alter_column('quota_bytes_used', type_=sa.BigInteger(), nullable=False, server_default='0')
|
||||
|
||||
def downgrade():
|
||||
with op.batch_alter_table('domain') as batch:
|
||||
batch.alter_column('max_quota_bytes', type_=sa.Integer(), nullable=False, server_default='0')
|
||||
|
||||
with op.batch_alter_table('user') as batch:
|
||||
batch.alter_column('quota_bytes', type_=sa.Integer(), nullable=False)
|
||||
batch.alter_column('quota_bytes_used', type_=sa.Integer(), nullable=False, server_default='0')
|
Loading…
Reference in New Issue