Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# Copyright 2022 TOSIT.IO
# SPDX-License-Identifier: Apache-2.0

"""Initial table creation

Revision ID: tdp_lib_1.1
Revises:
Create Date: 2024-06-11 09:59:57.688453

"""
from typing import Sequence, Union

import sqlalchemy as sa
from alembic import op

# revision identifiers, used by Alembic.
revision: str = "tdp_lib_1.1"
down_revision: Union[str, None] = None
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"deployment",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("options", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
sa.Enum(
"PLANNED", "RUNNING", "SUCCESS", "FAILURE", name="deploymentstateenum"
),
nullable=True,
),
sa.Column(
"deployment_type",
sa.Enum(
"DAG",
"OPERATIONS",
"RESUME",
"RECONFIGURE",
"CUSTOM",
name="deploymenttypeenum",
),
nullable=True,
),
sa.PrimaryKeyConstraint("id"),
)
op.create_table(
"operation",
sa.Column("deployment_id", sa.Integer(), nullable=False),
sa.Column("operation_order", sa.Integer(), nullable=False),
sa.Column("operation", sa.String(length=72), nullable=False),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("extra_vars", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
sa.Enum(
"PLANNED",
"RUNNING",
"PENDING",
"SUCCESS",
"FAILURE",
"HELD",
name="operationstateenum",
),
nullable=False,
),
sa.Column("logs", sa.LargeBinary(length=10000000), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("deployment_id", "operation_order"),
)
op.create_table(
"sch_status_log",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("event_time", sa.DateTime(), nullable=False),
sa.Column("service", sa.String(length=20), nullable=False),
sa.Column("component", sa.String(length=30), nullable=True),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("running_version", sa.String(length=40), nullable=True),
sa.Column("configured_version", sa.String(length=40), nullable=True),
sa.Column("to_config", sa.Boolean(), nullable=True),
sa.Column("to_restart", sa.Boolean(), nullable=True),
sa.Column("is_active", sa.Boolean(), nullable=True),
sa.Column(
"source",
sa.Enum(
"DEPLOYMENT", "FORCED", "STALE", "MANUAL", name="schstatuslogsourceenum"
),
nullable=False,
),
sa.Column("deployment_id", sa.Integer(), nullable=True),
sa.Column("message", sa.String(length=512), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("id"),
)
# ### end Alembic commands ###
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
# Copyright 2022 TOSIT.IO
# SPDX-License-Identifier: Apache-2.0

"""Initial table creation

Revision ID: tdp_lib_1.1
Revises:
Create Date: 2024-06-11 10:00:08.925442

"""
from typing import Sequence, Union

import sqlalchemy as sa
from alembic import op
from sqlalchemy.dialects import postgresql

# revision identifiers, used by Alembic.
revision: str = "tdp_lib_1.1"
down_revision: Union[str, None] = None
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
sa.Enum(
"DEPLOYMENT", "FORCED", "STALE", "MANUAL", name="schstatuslogsourceenum"
).create(op.get_bind())
sa.Enum(
"DAG",
"OPERATIONS",
"RESUME",
"RECONFIGURE",
"CUSTOM",
name="deploymenttypeenum",
).create(op.get_bind())
sa.Enum(
"PLANNED", "RUNNING", "SUCCESS", "FAILURE", name="deploymentstateenum"
).create(op.get_bind())
sa.Enum(
"PLANNED",
"RUNNING",
"PENDING",
"SUCCESS",
"FAILURE",
"HELD",
name="operationstateenum",
).create(op.get_bind())
op.create_table(
"deployment",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("options", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
postgresql.ENUM(
"PLANNED",
"RUNNING",
"SUCCESS",
"FAILURE",
name="deploymentstateenum",
create_type=False,
),
nullable=True,
),
sa.Column(
"deployment_type",
postgresql.ENUM(
"DAG",
"OPERATIONS",
"RESUME",
"RECONFIGURE",
"CUSTOM",
name="deploymenttypeenum",
create_type=False,
),
nullable=True,
),
sa.PrimaryKeyConstraint("id"),
)
op.create_table(
"operation",
sa.Column("deployment_id", sa.Integer(), nullable=False),
sa.Column("operation_order", sa.Integer(), nullable=False),
sa.Column("operation", sa.String(length=72), nullable=False),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("extra_vars", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
postgresql.ENUM(
"PLANNED",
"RUNNING",
"PENDING",
"SUCCESS",
"FAILURE",
"HELD",
name="operationstateenum",
create_type=False,
),
nullable=False,
),
sa.Column("logs", sa.LargeBinary(length=10000000), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("deployment_id", "operation_order"),
)
op.create_table(
"sch_status_log",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("event_time", sa.DateTime(), nullable=False),
sa.Column("service", sa.String(length=20), nullable=False),
sa.Column("component", sa.String(length=30), nullable=True),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("running_version", sa.String(length=40), nullable=True),
sa.Column("configured_version", sa.String(length=40), nullable=True),
sa.Column("to_config", sa.Boolean(), nullable=True),
sa.Column("to_restart", sa.Boolean(), nullable=True),
sa.Column("is_active", sa.Boolean(), nullable=True),
sa.Column(
"source",
postgresql.ENUM(
"DEPLOYMENT",
"FORCED",
"STALE",
"MANUAL",
name="schstatuslogsourceenum",
create_type=False,
),
nullable=False,
),
sa.Column("deployment_id", sa.Integer(), nullable=True),
sa.Column("message", sa.String(length=512), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("id"),
)
# ### end Alembic commands ###
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# Copyright 2022 TOSIT.IO
# SPDX-License-Identifier: Apache-2.0

"""Initial table creation

Revision ID: tdp_lib_1.1
Revises:
Create Date: 2024-06-11 09:59:29.908273

"""
from typing import Sequence, Union

import sqlalchemy as sa
from alembic import op

# revision identifiers, used by Alembic.
revision: str = "tdp_lib_1.1"
down_revision: Union[str, None] = None
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"deployment",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("options", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
sa.Enum(
"PLANNED", "RUNNING", "SUCCESS", "FAILURE", name="deploymentstateenum"
),
nullable=True,
),
sa.Column(
"deployment_type",
sa.Enum(
"DAG",
"OPERATIONS",
"RESUME",
"RECONFIGURE",
"CUSTOM",
name="deploymenttypeenum",
),
nullable=True,
),
sa.PrimaryKeyConstraint("id"),
)
op.create_table(
"operation",
sa.Column("deployment_id", sa.Integer(), nullable=False),
sa.Column("operation_order", sa.Integer(), nullable=False),
sa.Column("operation", sa.String(length=72), nullable=False),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("extra_vars", sa.JSON(none_as_null=True), nullable=True),
sa.Column("start_time", sa.DateTime(), nullable=True),
sa.Column("end_time", sa.DateTime(), nullable=True),
sa.Column(
"state",
sa.Enum(
"PLANNED",
"RUNNING",
"PENDING",
"SUCCESS",
"FAILURE",
"HELD",
name="operationstateenum",
),
nullable=False,
),
sa.Column("logs", sa.LargeBinary(length=10000000), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("deployment_id", "operation_order"),
)
op.create_table(
"sch_status_log",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("event_time", sa.DateTime(), nullable=False),
sa.Column("service", sa.String(length=20), nullable=False),
sa.Column("component", sa.String(length=30), nullable=True),
sa.Column("host", sa.String(length=255), nullable=True),
sa.Column("running_version", sa.String(length=40), nullable=True),
sa.Column("configured_version", sa.String(length=40), nullable=True),
sa.Column("to_config", sa.Boolean(), nullable=True),
sa.Column("to_restart", sa.Boolean(), nullable=True),
sa.Column("is_active", sa.Boolean(), nullable=True),
sa.Column(
"source",
sa.Enum(
"DEPLOYMENT", "FORCED", "STALE", "MANUAL", name="schstatuslogsourceenum"
),
nullable=False,
),
sa.Column("deployment_id", sa.Integer(), nullable=True),
sa.Column("message", sa.String(length=512), nullable=True),
sa.ForeignKeyConstraint(
["deployment_id"],
["deployment.id"],
),
sa.PrimaryKeyConstraint("id"),
)
# ### end Alembic commands ###
Loading