Adds field for sports and hobbies (Closes #1446).
[platal.git] / upgrade / 1.1.1 / 16_google_apps.sql
CommitLineData
d06058a9
VZ
1-- Adds a new "domain" field to the primary Google Apps table, to allow users
2-- to be created accross multiple organizations (Google Apps's name for multiple
3-- domains with each their own users, all tied to the same primary domain).
4ALTER TABLE gapps_accounts
5 ADD COLUMN g_domain VARCHAR(40) DEFAULT NULL AFTER g_account_name;
6
7-- vim:set syntax=mysql: