1
0
mirror of https://github.com/chylex/Lightning-Tracker.git synced 2024-09-19 01:42:49 +02:00
Lightning-Tracker/res/~database/IssueWeightTable.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