From d39d5b6023d243bc9b29e27234daae59b47e7389 Mon Sep 17 00:00:00 2001 From: Andyyy7666 <86536434+Andyyy7666@users.noreply.github.com> Date: Sat, 10 Sep 2022 14:38:42 +0200 Subject: [PATCH] feat: added inventory to db --- ND_Core/query.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/ND_Core/query.sql b/ND_Core/query.sql index 2c91085..66e6ee5 100644 --- a/ND_Core/query.sql +++ b/ND_Core/query.sql @@ -13,5 +13,6 @@ CREATE TABLE `characters` ( `groups` LONGTEXT NULL DEFAULT '[]', `last_location` LONGTEXT NULL DEFAULT '[]', `clothing` LONGTEXT NULL DEFAULT '[]', + `inventory` LONGTEXT NULL DEFAULT '[]', PRIMARY KEY (`character_id`) USING BTREE );