From ecca4465057633e5646cb36f48dd4e734c902342 Mon Sep 17 00:00:00 2001 From: P0nk Date: Wed, 19 Jan 2022 18:04:36 +0100 Subject: [PATCH] Add helpful comment in the monsterbook script --- database/sql/migration/monsterbook.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database/sql/migration/monsterbook.sql b/database/sql/migration/monsterbook.sql index be886cb925..af5c46aeeb 100644 --- a/database/sql/migration/monsterbook.sql +++ b/database/sql/migration/monsterbook.sql @@ -1,3 +1,5 @@ +/* Manually run this script in MySQL Workbench or some other database client + to migrate your old (pre Jan 19th 2022) monsterbook table to the new version */ ALTER TABLE cosmic.`monsterbook` CHANGE COLUMN `charid` `charid` INT(11) NOT NULL, ADD PRIMARY KEY (`charid`, `cardid`),