You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
429 B
SQL
15 lines
429 B
SQL
USE `realms_divided`;
|
|
CREATE TABLE IF NOT EXISTS `card_mana_colour` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`cardId` int(11) DEFAULT NULL,
|
|
`colourId` tinyint(4) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
INSERT INTO `card_mana_colour` (`id`, `cardId`, `colourId`) VALUES
|
|
(1, 1, 3),
|
|
(2, 2, 1),
|
|
(3, 3, 2),
|
|
(4, 4, 1),
|
|
(5, 5, 3);
|