From d06058a9e6fa9ec20f6838ff959d25484b29648e Mon Sep 17 00:00:00 2001 From: Vincent Zanotti Date: Mon, 30 May 2011 02:27:30 +0200 Subject: [PATCH] Updates the gapps_accounts table to also support an "organization domain" field. This will only be used by gappsd for now, until the next release. --- upgrade/1.1.1/16_google_apps.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 upgrade/1.1.1/16_google_apps.sql diff --git a/upgrade/1.1.1/16_google_apps.sql b/upgrade/1.1.1/16_google_apps.sql new file mode 100644 index 0000000..e829a48 --- /dev/null +++ b/upgrade/1.1.1/16_google_apps.sql @@ -0,0 +1,7 @@ +-- Adds a new "domain" field to the primary Google Apps table, to allow users +-- to be created accross multiple organizations (Google Apps's name for multiple +-- domains with each their own users, all tied to the same primary domain). +ALTER TABLE gapps_accounts + ADD COLUMN g_domain VARCHAR(40) DEFAULT NULL AFTER g_account_name; + +-- vim:set syntax=mysql: -- 2.1.4