Shortened names of default policy groups

This commit is contained in:
Andreas Steffen
2013-06-21 23:25:24 +02:00
parent 19ce03be73
commit 4cf568a785
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -461,37 +461,37 @@ INSERT INTO versions (
INSERT INTO groups ( /* 1 */
name, parent
) VALUES (
'Default Debian i686', 6
'Debian i686', 6
);
INSERT INTO groups ( /* 2 */
name, parent
) VALUES (
'Default Debian x86_64', 6
'Debian x86_64', 6
);
INSERT INTO groups ( /* 3 */
name, parent
) VALUES (
'Default Ubuntu i686', 6
'Ubuntu i686', 6
);
INSERT INTO groups ( /* 4 */
name, parent
) VALUES (
'Default Ubuntu x86_64', 6
'Ubuntu x86_64', 6
);
INSERT INTO groups ( /* 5 */
name, parent
) VALUES (
'Default Android', 7
'Android', 7
);
INSERT INTO groups ( /* 6 */
name, parent
) VALUES (
'Default Linux', 7
'Linux', 7
);
INSERT INTO groups ( /* 7 */
@@ -726,7 +726,7 @@ INSERT INTO enforcements (
INSERT INTO enforcements (
policy, group_id, max_age
) VALUES (
7, 2, 86400
7, 6, 86400
);
INSERT INTO enforcements (
@@ -744,13 +744,13 @@ INSERT INTO enforcements (
INSERT INTO enforcements (
policy, group_id, max_age
) VALUES (
10, 2, 60
10, 6, 60
);
INSERT INTO enforcements (
policy, group_id, max_age
) VALUES (
11, 2, 86400
11, 6, 86400
);
INSERT INTO enforcements (
+1 -1
View File
@@ -214,7 +214,7 @@ CREATE INDEX versions_package_product ON versions (
DROP TABLE IF EXISTS devices;
CREATE TABLE devices (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
description TEXT,
description TEXT DEFAULT '',
value BLOB NOT NULL,
product INTEGER REFERENCES products(id),
created INTEGER