From: Vincent Zanotti Date: Mon, 30 May 2011 00:27:30 +0000 (+0200) Subject: Updates the gapps_accounts table to also support an "organization X-Git-Tag: xorg/1.1.2~1^2 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=d06058a9e6fa9ec20f6838ff959d25484b29648e;p=platal.git 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. --- 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: