From 9d4700de8cc442ef5b9b9a88438de1287dcd962e Mon Sep 17 00:00:00 2001 From: Gustavo Fuhr Date: Fri, 2 Dec 2022 17:41:07 -0300 Subject: [PATCH] db update scripts --- distribution/registration-google/update-db-mysql.sql | 2 +- distribution/registration-google/update-db-postgres.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/distribution/registration-google/update-db-mysql.sql b/distribution/registration-google/update-db-mysql.sql index 45dc059e..ede72a63 100644 --- a/distribution/registration-google/update-db-mysql.sql +++ b/distribution/registration-google/update-db-mysql.sql @@ -1,4 +1,4 @@ -ALTER TABLE User +ALTER TABLE USER ADD COLUMN `google_sync` TINYINT(1) NULL, ADD COLUMN `sync_code` VARCHAR(255) NULL, ADD COLUMN `google_token` VARCHAR(255) NULL; diff --git a/distribution/registration-google/update-db-postgres.sql b/distribution/registration-google/update-db-postgres.sql index 38bc2ea1..846add61 100644 --- a/distribution/registration-google/update-db-postgres.sql +++ b/distribution/registration-google/update-db-postgres.sql @@ -1,4 +1,4 @@ -ALTER TABLE User +ALTER TABLE "user" ADD COLUMN `google_sync` BOOLEAN NULL, ADD COLUMN `sync_code` VARCHAR(255) NULL, ADD COLUMN `google_token` VARCHAR(255) NULL;