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;