mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
30 lines
583 B
Python
30 lines
583 B
Python
"""empty message
|
|
|
|
Revision ID: 28a427cbd4cf
|
|
Revises: e9f534df23a8
|
|
Create Date: 2018-06-03 01:47:33.006039
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import sqlalchemy.types as ty
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '28a427cbd4cf'
|
|
down_revision = 'e9f534df23a8'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|