mirror of
https://github.com/chylex/Lightning-Tracker.git
synced 2024-11-24 22:42:50 +01:00
8 lines
256 B
SQL
8 lines
256 B
SQL
CREATE TABLE IF NOT EXISTS `issue_weights` (
|
|
`scale` ENUM ('tiny', 'small', 'medium', 'large', 'massive') NOT NULL,
|
|
`contribution` TINYINT NOT NULL,
|
|
PRIMARY KEY (`scale`)
|
|
) ENGINE = InnoDB
|
|
DEFAULT CHARSET = utf8mb4
|
|
COLLATE utf8mb4_general_ci
|