- fixed broken images on README.md - updated README.md - updated the PR template - adding option for changing the tab name - added tag headers for grid and list view - added function that resizes template app images to 64x64 on startup - fixed error that was blocking image types from being uploaded
29 lines
675 B
Python
29 lines
675 B
Python
"""empty message
|
|
|
|
Revision ID: ce94252d9023
|
|
Revises: a36cddc6266e
|
|
Create Date: 2020-03-08 10:56:30.470619
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "ce94252d9023"
|
|
down_revision = "a36cddc6266e"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column("settings", sa.Column("custom_app_title", sa.String(), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column("settings", "custom_app_title")
|
|
# ### end Alembic commands ###
|