From b55650b221add58d720f4a69b385a9394605b94b Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Fri, 29 Nov 2024 23:12:52 +0000 Subject: [PATCH] db: add another col to store the bedrock id For #26 --- db/migrations/7_minecraft-bedrock.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 db/migrations/7_minecraft-bedrock.sql diff --git a/db/migrations/7_minecraft-bedrock.sql b/db/migrations/7_minecraft-bedrock.sql new file mode 100644 index 0000000..71d8976 --- /dev/null +++ b/db/migrations/7_minecraft-bedrock.sql @@ -0,0 +1,3 @@ + +-- Using this col we will be able to see if someone has a bedrock account (as well as a java one) +ALTER TABLE wolves ADD COLUMN minecraft_uid TEXT; \ No newline at end of file