Added frontend impl #378

This commit is contained in:
2023-09-28 14:36:35 +02:00
parent 8e8da46a54
commit 376cb76036
15 changed files with 685 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ class ShortRoleNameMigration(MigrationABC):
`Id` BIGINT NOT NULL AUTO_INCREMENT,
`ShortName` VARCHAR(255) NOT NULL,
`DiscordRoleId` BIGINT NOT NULL,
`Position` ENUM('Before', 'After') NOT NULL,
`Position` ENUM('before', 'after') NOT NULL,
`ServerId` BIGINT,
`CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6),
`LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),

View File

@@ -2,5 +2,5 @@ from enum import Enum
class ShortRoleNamePositionEnum(Enum):
before = "Before"
after = "After"
before = "before"
after = "after"