Summary | Missing turba table creation in groupware.mysql.sql |
Queue | Horde Groupware Webmail Edition |
Queue Version | 1.0.3 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | |
Requester | lfbm.andamentos (at) gmail (dot) com |
Created | 11/04/2007 (6481 days ago) |
Due | |
Updated | 11/18/2007 (6467 days ago) |
Assigned | 11/05/2007 (6480 days ago) |
Resolved | 11/18/2007 (6467 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
if there ever will be a 1.0 release with a newer Turba version.
because that's the table, and you can use turba with other tables. But
I think it's time to let go of that to make the default install
easier, so just turba.sql is okay with me.
State ⇒ Feedback
script to turba.sql (instead of turba_objects.sql) so that it's picked
up automatically from the groupware build script? Or is there any
reason to keep the current name and we should better work around this
in the build script?
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Missing turba table creation in groupware.mysql.sql
Queue ⇒ Horde Groupware Webmail Edition
State ⇒ Unconfirmed
22:36:49 jan Exp $
[I think the description should say: "../sql/groupware.mysql.sql ..."
There is no turba table creation in the script:
"CREATE TABLE turba_objects (
object_id VARCHAR(32) NOT NULL,
owner_id VARCHAR(255) NOT NULL,
object_type VARCHAR(255) NOT NULL DEFAULT 'Object',
object_uid VARCHAR(255),
object_members BLOB,
object_name VARCHAR(255),
object_alias VARCHAR(32),
object_email VARCHAR(255),
object_homeaddress VARCHAR(255),
object_workaddress VARCHAR(255),
object_homephone VARCHAR(25),
object_workphone VARCHAR(25),
object_cellphone VARCHAR(25),
object_fax VARCHAR(25),
object_title VARCHAR(255),
object_company VARCHAR(255),
object_notes TEXT,
object_pgppublickey TEXT,
object_smimepublickey TEXT,
object_freebusyurl VARCHAR(255),
PRIMARY KEY(object_id)
);
CREATE INDEX turba_owner_idx ON turba_objects (owner_id);
GRANT SELECT, INSERT, UPDATE, DELETE ON turba_objects TO horde@localhost;"