Skip to content
Merged
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
10 changes: 5 additions & 5 deletions providers/fab/docs/migrations-ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ Here's the list of all the Database Migrations that are executed via when you ru
.. All table elements are scraped from migration files
.. Beginning of auto-generated table

+-------------------------+--------------+---------------+------------------------+
| Revision ID | Revises ID | Fab Version | Description |
+=========================+==============+===============+========================+
| ``6709f7a774b9`` (head) | ``None`` | ``1.4.0`` | placeholder migration. |
+-------------------------+--------------+---------------+------------------------+
+-------------------------+--------------+---------------+-----------------------------------------+
| Revision ID | Revises ID | Fab Version | Description |
+=========================+==============+===============+=========================================+
| ``6709f7a774b9`` (head) | ``None`` | ``1.4.0`` | Create User and Role tables if missing. |
+-------------------------+--------------+---------------+-----------------------------------------+

.. End of auto-generated table

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

"""
Create User and Role tables if missing.

Revision ID: 6709f7a774b9
Revises:
Create Date: 2024-09-03 17:06:38.040510

Note: This is a placeholder migration used to stamp the migration
when we create the migration from the ORM. Otherwise, it will run
without stamping the migration, leading to subsequent changes to
the tables not being migrated.
"""

from __future__ import annotations

import sqlalchemy as sa
from alembic import op

# revision identifiers, used by Alembic.
revision = "6709f7a774b9"
down_revision = None
branch_labels = None
depends_on = None
fab_version = "1.4.0"


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"ab_group",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("name", sa.String(length=100), nullable=False),
sa.Column("label", sa.String(length=150), nullable=True),
sa.Column("description", sa.String(length=512), nullable=True),
sa.PrimaryKeyConstraint("id", name=op.f("ab_group_pkey")),
sa.UniqueConstraint("name", name=op.f("ab_group_name_uq")),
if_not_exists=True,
)
op.create_table(
"ab_permission",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("name", sa.String(length=100), nullable=False),
sa.PrimaryKeyConstraint("id", name=op.f("ab_permission_pkey")),
sa.UniqueConstraint("name", name=op.f("ab_permission_name_uq")),
if_not_exists=True,
)
op.create_table(
"ab_register_user",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("first_name", sa.String(length=256), nullable=False),
sa.Column("last_name", sa.String(length=256), nullable=False),
sa.Column(
"username",
sa.String(length=512).with_variant(sa.String(length=512, collation="NOCASE"), "sqlite"),
nullable=False,
),
sa.Column("password", sa.String(length=256), nullable=True),
sa.Column("email", sa.String(length=512), nullable=False),
sa.Column("registration_date", sa.DateTime(), nullable=True),
sa.Column("registration_hash", sa.String(length=256), nullable=True),
sa.PrimaryKeyConstraint("id", name=op.f("ab_register_user_pkey")),
sa.UniqueConstraint("username", name=op.f("ab_register_user_username_uq")),
if_not_exists=True,
)
op.create_table(
"ab_role",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("name", sa.String(length=64), nullable=False),
sa.PrimaryKeyConstraint("id", name=op.f("ab_role_pkey")),
sa.UniqueConstraint("name", name=op.f("ab_role_name_uq")),
if_not_exists=True,
)
op.create_table(
"ab_user",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("first_name", sa.String(length=256), nullable=False),
sa.Column("last_name", sa.String(length=256), nullable=False),
sa.Column(
"username",
sa.String(length=512).with_variant(sa.String(length=512, collation="NOCASE"), "sqlite"),
nullable=False,
),
sa.Column("password", sa.String(length=256), nullable=True),
sa.Column("active", sa.Boolean(), nullable=True),
sa.Column("email", sa.String(length=512), nullable=False),
sa.Column("last_login", sa.DateTime(), nullable=True),
sa.Column("login_count", sa.Integer(), nullable=True),
sa.Column("fail_login_count", sa.Integer(), nullable=True),
sa.Column("created_on", sa.DateTime(), nullable=True),
sa.Column("changed_on", sa.DateTime(), nullable=True),
sa.Column("created_by_fk", sa.Integer(), nullable=True),
sa.Column("changed_by_fk", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(["changed_by_fk"], ["ab_user.id"], name=op.f("ab_user_changed_by_fk_fkey")),
sa.ForeignKeyConstraint(["created_by_fk"], ["ab_user.id"], name=op.f("ab_user_created_by_fk_fkey")),
sa.PrimaryKeyConstraint("id", name=op.f("ab_user_pkey")),
sa.UniqueConstraint("email", name=op.f("ab_user_email_uq")),
sa.UniqueConstraint("username", name=op.f("ab_user_username_uq")),
if_not_exists=True,
)
op.create_table(
"ab_view_menu",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("name", sa.String(length=250), nullable=False),
sa.PrimaryKeyConstraint("id", name=op.f("ab_view_menu_pkey")),
sa.UniqueConstraint("name", name=op.f("ab_view_menu_name_uq")),
)
op.create_table(
"ab_group_role",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("group_id", sa.Integer(), nullable=True),
sa.Column("role_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["group_id"], ["ab_group.id"], name=op.f("ab_group_role_group_id_fkey"), ondelete="CASCADE"
),
sa.ForeignKeyConstraint(
["role_id"], ["ab_role.id"], name=op.f("ab_group_role_role_id_fkey"), ondelete="CASCADE"
),
sa.PrimaryKeyConstraint("id", name=op.f("ab_group_role_pkey")),
sa.UniqueConstraint("group_id", "role_id", name=op.f("ab_group_role_group_id_role_id_uq")),
if_not_exists=True,
)
with op.batch_alter_table("ab_group_role", schema=None) as batch_op:
batch_op.create_index("idx_group_id", ["group_id"], unique=False)
batch_op.create_index("idx_group_role_id", ["role_id"], unique=False)

op.create_table(
"ab_permission_view",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("permission_id", sa.Integer(), nullable=True),
sa.Column("view_menu_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["permission_id"], ["ab_permission.id"], name=op.f("ab_permission_view_permission_id_fkey")
),
sa.ForeignKeyConstraint(
["view_menu_id"], ["ab_view_menu.id"], name=op.f("ab_permission_view_view_menu_id_fkey")
),
sa.PrimaryKeyConstraint("id", name=op.f("ab_permission_view_pkey")),
sa.UniqueConstraint(
"permission_id", "view_menu_id", name=op.f("ab_permission_view_permission_id_view_menu_id_uq")
),
if_not_exists=True,
)
op.create_table(
"ab_user_group",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("user_id", sa.Integer(), nullable=True),
sa.Column("group_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["group_id"], ["ab_group.id"], name=op.f("ab_user_group_group_id_fkey"), ondelete="CASCADE"
),
sa.ForeignKeyConstraint(
["user_id"], ["ab_user.id"], name=op.f("ab_user_group_user_id_fkey"), ondelete="CASCADE"
),
sa.PrimaryKeyConstraint("id", name=op.f("ab_user_group_pkey")),
sa.UniqueConstraint("user_id", "group_id", name=op.f("ab_user_group_user_id_group_id_uq")),
if_not_exists=True,
)
with op.batch_alter_table("ab_user_group", schema=None) as batch_op:
batch_op.create_index("idx_user_group_id", ["group_id"], unique=False)
batch_op.create_index("idx_user_id", ["user_id"], unique=False)

op.create_table(
"ab_user_role",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("user_id", sa.Integer(), nullable=True),
sa.Column("role_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["role_id"], ["ab_role.id"], name=op.f("ab_user_role_role_id_fkey"), ondelete="CASCADE"
),
sa.ForeignKeyConstraint(
["user_id"], ["ab_user.id"], name=op.f("ab_user_role_user_id_fkey"), ondelete="CASCADE"
),
sa.PrimaryKeyConstraint("id", name=op.f("ab_user_role_pkey")),
sa.UniqueConstraint("user_id", "role_id", name=op.f("ab_user_role_user_id_role_id_uq")),
if_not_exists=True,
)
op.create_table(
"ab_permission_view_role",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("permission_view_id", sa.Integer(), nullable=True),
sa.Column("role_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["permission_view_id"],
["ab_permission_view.id"],
name=op.f("ab_permission_view_role_permission_view_id_fkey"),
ondelete="CASCADE",
),
sa.ForeignKeyConstraint(
["role_id"], ["ab_role.id"], name=op.f("ab_permission_view_role_role_id_fkey"), ondelete="CASCADE"
),
sa.PrimaryKeyConstraint("id", name=op.f("ab_permission_view_role_pkey")),
sa.UniqueConstraint(
"permission_view_id",
"role_id",
name=op.f("ab_permission_view_role_permission_view_id_role_id_uq"),
),
if_not_exists=True,
)
# ### end Alembic commands ###


def downgrade() -> None: ...

This file was deleted.

Loading