mirror of
https://github.com/flibusta-apps/telegram_files_server.git
synced 2025-12-06 20:45:37 +01:00
Init
This commit is contained in:
32
fastapi_file_server/app/alembic/versions/3bbf7cb4eaa2_.py
Normal file
32
fastapi_file_server/app/alembic/versions/3bbf7cb4eaa2_.py
Normal file
@@ -0,0 +1,32 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 3bbf7cb4eaa2
|
||||
Revises: 5a32159504fd
|
||||
Create Date: 2021-09-27 17:18:27.635063
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '3bbf7cb4eaa2'
|
||||
down_revision = '5a32159504fd'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.alter_column('uploaded_files', 'upload_time',
|
||||
existing_type=postgresql.TIMESTAMP(timezone=True),
|
||||
nullable=True)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.alter_column('uploaded_files', 'upload_time',
|
||||
existing_type=postgresql.TIMESTAMP(timezone=True),
|
||||
nullable=False)
|
||||
# ### end Alembic commands ###
|
||||
34
fastapi_file_server/app/alembic/versions/5a32159504fd_.py
Normal file
34
fastapi_file_server/app/alembic/versions/5a32159504fd_.py
Normal file
@@ -0,0 +1,34 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 5a32159504fd
|
||||
Revises:
|
||||
Create Date: 2021-09-27 16:23:39.987261
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '5a32159504fd'
|
||||
down_revision = None
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('uploaded_files',
|
||||
sa.Column('id', sa.BigInteger(), nullable=True),
|
||||
sa.Column('backend', sa.String(length=16), nullable=False),
|
||||
sa.Column('data', sa.JSON(), nullable=False),
|
||||
sa.Column('upload_time', sa.DateTime(timezone=True), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_table('uploaded_files')
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user