mirror of
https://github.com/StefBuwalda/dashboard_test.git
synced 2025-12-19 03:27:54 +00:00
MAJOR REFACTOR P3
This commit is contained in:
37
app/migrations/versions/3c05315d5b9b_.py
Normal file
37
app/migrations/versions/3c05315d5b9b_.py
Normal file
@@ -0,0 +1,37 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 3c05315d5b9b
|
||||
Revises: f87909a4293b
|
||||
Create Date: 2025-09-05 09:48:08.561045
|
||||
|
||||
"""
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "3c05315d5b9b"
|
||||
down_revision = "f87909a4293b"
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table("log", schema=None) as batch_op:
|
||||
batch_op.add_column(
|
||||
sa.Column(
|
||||
"timeout", sa.Boolean(), nullable=False, server_default="false"
|
||||
)
|
||||
)
|
||||
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table("log", schema=None) as batch_op:
|
||||
batch_op.drop_column("timeout")
|
||||
|
||||
# ### end Alembic commands ###
|
||||
32
app/migrations/versions/d7d380435347_.py
Normal file
32
app/migrations/versions/d7d380435347_.py
Normal file
@@ -0,0 +1,32 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: d7d380435347
|
||||
Revises:
|
||||
Create Date: 2025-09-02 08:43:16.682424
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'd7d380435347'
|
||||
down_revision = None
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('log',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('dateCreated', sa.DateTime(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_table('log')
|
||||
# ### end Alembic commands ###
|
||||
35
app/migrations/versions/f04407e8e466_.py
Normal file
35
app/migrations/versions/f04407e8e466_.py
Normal file
@@ -0,0 +1,35 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: f04407e8e466
|
||||
Revises: d7d380435347
|
||||
Create Date: 2025-09-03 15:40:30.413166
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'f04407e8e466'
|
||||
down_revision = 'd7d380435347'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('service',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('url', sa.String(), nullable=False),
|
||||
sa.Column('label', sa.String(length=15), nullable=False),
|
||||
sa.Column('public_access', sa.Boolean(), nullable=False),
|
||||
sa.Column('ping_method', sa.Integer(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_table('service')
|
||||
# ### end Alembic commands ###
|
||||
50
app/migrations/versions/f87909a4293b_.py
Normal file
50
app/migrations/versions/f87909a4293b_.py
Normal file
@@ -0,0 +1,50 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: f87909a4293b
|
||||
Revises: f04407e8e466
|
||||
Create Date: 2025-09-03 16:36:14.608372
|
||||
|
||||
"""
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "f87909a4293b"
|
||||
down_revision = "f04407e8e466"
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.execute("DROP TABLE IF EXISTS _alembic_tmp_log")
|
||||
op.execute("DELETE FROM log")
|
||||
|
||||
with op.batch_alter_table("log", schema=None) as batch_op:
|
||||
batch_op.add_column(
|
||||
sa.Column(
|
||||
"service_id", sa.Integer(), nullable=False, server_default="0"
|
||||
)
|
||||
)
|
||||
batch_op.add_column(sa.Column("ping", sa.Integer(), nullable=True))
|
||||
batch_op.create_index(
|
||||
batch_op.f("ix_log_dateCreated"), ["dateCreated"], unique=False
|
||||
)
|
||||
batch_op.create_foreign_key(
|
||||
"fk_log2service", "service", ["service_id"], ["id"]
|
||||
)
|
||||
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table("log", schema=None) as batch_op:
|
||||
batch_op.drop_constraint("fk_log2service", type_="foreignkey")
|
||||
batch_op.drop_index(batch_op.f("ix_log_dateCreated"))
|
||||
batch_op.drop_column("ping")
|
||||
batch_op.drop_column("service_id")
|
||||
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user