Change sorting order on ML display to use sort_name.
[platal.git] / upgrade / 1.1.1 / 16_google_apps.sql
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).
4 ALTER TABLE gapps_accounts
5 ADD COLUMN g_domain VARCHAR(40) DEFAULT NULL AFTER g_account_name;
6
7 -- vim:set syntax=mysql: