1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-ingo-2.0.0/root/etc/e-smith/events/actions/ingo_upgrade mezzanine_patched_e-smith-ingo-2.0.0/root/etc/e-smith/events/actions/ingo_upgrade |
2 |
--- e-smith-ingo-2.0.0/root/etc/e-smith/events/actions/ingo_upgrade 2010-01-23 22:22:41.000000000 -0600 |
3 |
+++ mezzanine_patched_e-smith-ingo-2.0.0/root/etc/e-smith/events/actions/ingo_upgrade 2010-01-23 18:47:00.000000000 -0600 |
4 |
@@ -47,6 +47,10 @@ |
5 |
# These are all safe to run multiple times |
6 |
|
7 |
my @statements = ( |
8 |
+ "ALTER TABLE ingo_shares CHANGE share_flags share_flags SMALLINT DEFAULT 0 NOT NULL", |
9 |
+ "ALTER TABLE ingo_shares CHANGE perm_creator perm_creator SMALLINT DEFAULT 0 NOT NULL", |
10 |
+ "ALTER TABLE ingo_shares CHANGE perm_default perm_default SMALLINT DEFAULT 0 NOT NULL", |
11 |
+ "ALTER TABLE ingo_shares CHANGE perm_guest perm_guest SMALLINT DEFAULT 0 NOT NULL", |
12 |
"ALTER TABLE ingo_shares_groups CHANGE group_uid group_uid VARCHAR(255)", |
13 |
); |
14 |
|
15 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-ingo-2.0.0/root/home/httpd/html/horde/smeserver/ingo.sql mezzanine_patched_e-smith-ingo-2.0.0/root/home/httpd/html/horde/smeserver/ingo.sql |
16 |
--- e-smith-ingo-2.0.0/root/home/httpd/html/horde/smeserver/ingo.sql 2010-01-23 22:22:41.000000000 -0600 |
17 |
+++ mezzanine_patched_e-smith-ingo-2.0.0/root/home/httpd/html/horde/smeserver/ingo.sql 2009-12-28 10:44:11.000000000 -0600 |
18 |
@@ -1,4 +1,4 @@ |
19 |
--- $Horde: ingo/scripts/sql/ingo.sql,v 1.6.2.4 2008/04/29 19:33:21 chuck Exp $ |
20 |
+-- $Horde: ingo/scripts/sql/ingo.sql,v 1.6.2.8 2009-10-20 21:44:32 jan Exp $ |
21 |
|
22 |
CREATE TABLE IF NOT EXISTS ingo_rules ( |
23 |
rule_id INT NOT NULL, |
24 |
@@ -59,10 +59,10 @@ |
25 |
share_id INT NOT NULL, |
26 |
share_name VARCHAR(255) NOT NULL, |
27 |
share_owner VARCHAR(255) NOT NULL, |
28 |
- share_flags SMALLINT NOT NULL DEFAULT 0, |
29 |
- perm_creator SMALLINT NOT NULL DEFAULT 0, |
30 |
- perm_default SMALLINT NOT NULL DEFAULT 0, |
31 |
- perm_guest SMALLINT NOT NULL DEFAULT 0, |
32 |
+ share_flags SMALLINT DEFAULT 0 NOT NULL, |
33 |
+ perm_creator SMALLINT DEFAULT 0 NOT NULL, |
34 |
+ perm_default SMALLINT DEFAULT 0 NOT NULL, |
35 |
+ perm_guest SMALLINT DEFAULT 0 NOT NULL, |
36 |
attribute_name VARCHAR(255) NOT NULL, |
37 |
attribute_desc VARCHAR(255), |
38 |
PRIMARY KEY (share_id) |